Add some head versions to CI action and allow errors.

This commit is contained in:
Robert Haines 2021-05-16 21:47:49 +01:00
parent 25ce623d13
commit e24f191222
1 changed files with 10 additions and 1 deletions

View File

@ -6,8 +6,17 @@ jobs:
test:
strategy:
matrix:
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', head, jruby, truffleruby]
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', jruby, truffleruby]
can-fail: [false]
include:
- ruby: head
can-fail: true
- ruby: jruby-head
can-fail: true
- ruby: truffleruby-head
can-fail: true
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.can-fail }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1