Skip to content

Tidy up

Tidy up #102

Workflow file for this run

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