Skip to content

Commit f975f2f

Browse files
committed
Fix CI
1 parent f357e26 commit f975f2f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,17 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
os: [ubuntu-20.04, macos-latest]
11+
os: [ubuntu-20.04]
1212
ruby-version: [2.6, 2.7, 3.0, 3.1, 3.2, jruby-9.3, jruby-9.4, truffleruby]
13+
include:
14+
- os: macos-latest
15+
ruby-version: 2.6
16+
- os: macos-latest
17+
ruby-version: 3.0
18+
- os: macos-latest
19+
ruby-version: 3.2
20+
- os: macos-latest
21+
ruby-version: jruby-9.3
1322
runs-on: ${{ matrix.os }}
1423
steps:
1524
- uses: actions/checkout@v2
@@ -26,6 +35,7 @@ jobs:
2635

2736
- name: Coveralls
2837
uses: coverallsapp/github-action@master
38+
if: ${{ matrix.ruby-version != 'truffleruby' }}
2939
with:
3040
github-token: ${{ secrets.github_token }}
3141
parallel: true

0 commit comments

Comments
 (0)