2021-04-12 07:46:33 -04:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
2021-04-12 10:43:18 -04:00
|
|
|
continue-on-error: ${{ matrix.experimental }}
|
2021-04-12 07:46:33 -04:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-01-09 18:54:20 -05:00
|
|
|
ruby: ["2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "jruby"]
|
2021-04-12 10:43:18 -04:00
|
|
|
experimental: [false]
|
|
|
|
include:
|
|
|
|
- ruby: "truffleruby"
|
|
|
|
experimental: true
|
2021-04-12 07:46:33 -04:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
ruby-version: ${{matrix.ruby}}
|
|
|
|
bundler-cache: true
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
timeout-minutes: 5
|
|
|
|
run: ${{matrix.env}} bundle exec rake
|