Skip to content

Commit 8b39cdc

Browse files
committed
fixup! Upgrade minimum required Ruby to v3.1.2
1 parent 66722ef commit 8b39cdc

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: CI
22
on:
33
push:
44
schedule:
5-
- cron: '0 1 * * 0' # every Sunday at 1am
5+
- cron: '0 1 * * 0' # every Sunday at 1am
66
jobs:
77
test:
88
strategy:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, macos-latest]
12-
ruby: [3.1, 3.2, 3.3, 3.4, head]
13-
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || endsWith(matrix.ruby, 'jruby') }}
12+
ruby: [3.1, 3.2, 3.3, 3.4, head, jruby, jruby-head]
13+
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || endsWith(matrix.ruby, 'jruby') }}
1414
runs-on: ${{ matrix.os }}
1515
steps:
1616
- uses: actions/checkout@v4
@@ -31,10 +31,9 @@ jobs:
3131
- run: bundle exec rake
3232
env:
3333
CUCUMBER_PUBLISH_TOKEN: ${{ secrets.CUCUMBER_PUBLISH_TOKEN }}
34-
- uses: paambaati/codeclimate-action@v3.2.0
34+
- uses: paambaati/codeclimate-action@v9.0.0
3535
env:
3636
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
3737
with:
3838
coverageLocations: |
3939
${{ github.workspace }}/coverage/lcov/*.lcov:lcov
40-
debug: true

0 commit comments

Comments
 (0)