Small CI improvements (#1703)

* Disable `fast-fail`

Since we test against multiple versions of Ruby it makes sense to allow all Rubies to finish, regardless of fails for specific versions.

* Run test workflow for all branches
This commit is contained in:
Robin Wallin 2021-06-02 14:51:46 +02:00 committed by GitHub
parent 6d368c062e
commit c33c2b1a00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ name: Testing
on:
push:
branches:
- master
- '**'
pull_request:
jobs:
@ -18,6 +18,7 @@ jobs:
name: Test with Ruby-${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
# TODO: Add jruby if something like allow_failures will be implemented on Actions.