We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b38642d commit f47b373Copy full SHA for f47b373
.github/workflows/test.yml
@@ -22,12 +22,18 @@ jobs:
22
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
23
steps:
24
- uses: actions/checkout@v3
25
+
26
- name: Set up Ruby
27
uses: ruby/setup-ruby@v1
28
with:
29
ruby-version: ${{ matrix.ruby-version }}
30
rubygems: 3.4.10
31
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
32
33
+ - name: Run linter
34
+ if: matrix.ruby-version == '3.3' && matrix.gemfile == 'rails_7.2'
35
+ run: bundle exec rubocop
36
37
- name: Run tests
38
run: bundle exec rspec
39
0 commit comments