We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe957e1 commit a27ebf1Copy full SHA for a27ebf1
1 file changed
.github/workflows/test.yml
@@ -24,5 +24,21 @@ jobs:
24
with:
25
ruby-version: ${{ matrix.ruby-version }}
26
bundler-cache: true
27
- - name: Run tests
28
- run: bundle exec rake
+ - name: Run Rubocop
+ run: bundle exec rake rubocop
29
+ - name: Run Unit Tests
30
+ run: bundle exec rake spec
31
+
32
+ integration:
33
+ runs-on: ubuntu-latest
34
+ name: Integration
35
36
+ steps:
37
+ - uses: actions/checkout@v4
38
+ - name: Set up Ruby
39
+ uses: ruby/setup-ruby@v1
40
+ with:
41
+ ruby-version: '3.4'
42
+ bundler-cache: true
43
+ - name: Run Integration Tests
44
+ run: bundle exec rake integration
0 commit comments