Skip to content

Commit 2f3501d

Browse files
committed
Add coveralls support. Add support to test ruby 3.2
1 parent 9efe57a commit 2f3501d

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-20.04, macos-latest]
12-
ruby-version: [2.1.9, 2.2.10, 2.3.8, 2.4.6, 2.5.8, 2.6.6, 2.7.2, 3.0.1, '3.1', jruby-9.1.17.0, jruby-9.2.17.0, truffleruby]
12+
ruby-version: [2.1.9, 2.2.10, 2.3.8, 2.4.6, 2.5.8, 2.6.6, 2.7.2, 3.0.1, '3.1', '3.2', jruby-9.1.17.0, jruby-9.2.17.0, truffleruby]
1313
runs-on: ${{ matrix.os }}
1414
steps:
1515
- uses: actions/checkout@v2
@@ -23,3 +23,13 @@ jobs:
2323

2424
- name: Run tests
2525
run: bundle exec rake
26+
27+
finish:
28+
needs: test
29+
runs-on: ubuntu-latest
30+
steps:
31+
- name: Coveralls Finished
32+
uses: coverallsapp/github-action@master
33+
with:
34+
github-token: ${{ secrets.GITHUB_TOKEN }}
35+
parallel-finished: true

0 commit comments

Comments
 (0)