Tidy up #102
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: [3.1, 3.2, 3.3] | |
container: | |
image: ruby:${{ matrix.ruby }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: gem install bundler | |
- run: bundle install --jobs 4 --retry 3 | |
- run: bundle exec rake | |
coverage: | |
needs: [test] | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
container: | |
image: ruby:3.3 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: gem install bundler | |
- run: bundle install --jobs 4 --retry 3 | |
- uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: bundle exec rake test |