1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
name: Main
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: 'CI Tests'
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: [jruby, 2.7, '3.0', 3.1, 3.2, 3.3, head]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3.3.0
# Conditionally configure bundler via environment variables as advised
# * https://github.com/ruby/setup-ruby#bundle-config
- name: Set bundler environment variables
run: |
echo "BUNDLE_WITHOUT=checks" >> $GITHUB_ENV
if: matrix.ruby != 3.3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec
- uses: codecov/codecov-action@v3.1.1
with:
name: ${{ matrix.ruby }}
file: ./coverage/coverage.xml
- run: bundle exec rubocop
if: matrix.ruby == 3.3
|