We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0137538 commit c904ac4Copy full SHA for c904ac4
1 file changed
.github/workflows/ci.yml
@@ -15,6 +15,7 @@ jobs:
15
runs-on: ubuntu-latest
16
env:
17
CI: true
18
+ ALLOW_FAILURES: ${{ endsWith(matrix.ruby, 'head') }}
19
strategy:
20
fail-fast: false
21
matrix:
@@ -35,7 +36,7 @@ jobs:
35
36
- name: Install dependencies
37
run: bundle install --jobs 4 --retry 3
38
- name: Run tests
- run: bundle exec rspec spec
39
+ run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
40
- name: Coveralls GitHub Action
41
uses: coverallsapp/github-action@v1.1.2
42
if: "matrix.ruby == '3.0'"
0 commit comments