Skip to content

ci: fix jruby rails >= 7.2 #468

ci: fix jruby rails >= 7.2

ci: fix jruby rails >= 7.2 #468

Workflow file for this run

name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: ${{ matrix.ruby }}
runs-on: ubuntu-latest
env:
COVERAGE_RUBY_VERSION: 2.6
BUNDLE_PATH: ${{ github.workspace }}/vendor/bundle
strategy:
fail-fast: false
matrix:
ruby:
- 2.6
- 2.7
- '3.0' # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
- 3.1
- 3.2
- 3.3
- 3.4
- jruby-9
- truffleruby
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Restore cache
uses: actions/cache@v4
with:
path: ${{ env.BUNDLE_PATH }}
key: ruby-${{ matrix.ruby }}-gems-${{ hashFiles('config.gemspec', 'gemfiles/**') }}
restore-keys: |
ruby-${{ matrix.ruby }}-gems-
- name: Install
run: |
bundle install
bundle exec appraisal install
- name: Test
run: bundle exec appraisal rspec
- name: Publish code coverage
if: startsWith(env.RUBY_VERSION, env.COVERAGE_RUBY_VERSION)
uses: paambaati/codeclimate-action@v4.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: bundle exec appraisal rspec
all-passed:
runs-on: ubuntu-latest
if: always()
needs:
- test
steps:
- run: exit ${{ contains(needs.*.result, 'failure') && 1 || 0 }}