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 cfc054b commit 9950d2eCopy full SHA for 9950d2e
.github/workflows/build.yml
@@ -42,8 +42,13 @@ jobs:
42
steps:
43
- uses: actions/checkout@v2
44
- run: rm Gemfile.lock
45
- - uses: ruby/setup-ruby@v1
+ - name: Set up Ruby ${{ matrix.ruby }}
46
+ uses: ruby/setup-ruby@v1
47
with:
48
ruby-version: ${{ matrix.ruby-version }}
49
bundler-cache: true
- - run: bundle exec rake
50
+ - name: Run rubocop
51
+ run: bundle exec rubocop
52
+ if: ${{ matrix.ruby == '3.2.0' }}
53
+ - name: Run tests
54
+ run: bundle exec rspec
0 commit comments