Skip to content

Commit fc5d731

Browse files
committed
wip
1 parent 48de0ff commit fc5d731

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, macos-latest]
12-
ruby: ['3.1', '3.2', '3.4', head, jruby, jruby-head]
13-
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || endsWith(matrix.ruby, 'jruby') }}
12+
ruby: ['3.1', '3.2', '3.4', head]
13+
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
1414
runs-on: ${{ matrix.os }}
1515
steps:
1616
- uses: actions/checkout@v4
1717
- uses: ruby/setup-ruby@v1
1818
with:
1919
ruby-version: ${{ matrix.ruby }}
2020
bundler-cache: true
21-
- run: bundle exec rake tests
21+
- run: bundle exec rake ${{ (endsWith(matrix.ruby, 'head')) && 'spec' || 'tests' }}
2222
coverage:
2323
needs: [ test ]
2424
name: coverage

0 commit comments

Comments
 (0)