Skip to content

Commit a145adc

Browse files
committed
Update CI config, drop CodeClimate config
1 parent 3171687 commit a145adc

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ on:
1010
- '**'
1111
schedule:
1212
- cron: '0 4 1 * *'
13+
# Run workflow manually
14+
workflow_dispatch:
1315

1416
jobs:
1517
rspec:
@@ -18,6 +20,7 @@ jobs:
1820
fail-fast: false
1921
matrix:
2022
ruby:
23+
- '3.4'
2124
- '3.3'
2225
- '3.2'
2326
- '3.1'
@@ -27,17 +30,13 @@ jobs:
2730

2831
steps:
2932
- name: Checkout
30-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3134

3235
- name: Setup Ruby
3336
uses: ruby/setup-ruby@v1
3437
with:
3538
ruby-version: ${{ matrix.ruby }}
3639
bundler-cache: true
3740

38-
- name: RSpec & publish code coverage
39-
uses: paambaati/[email protected]
40-
env:
41-
CC_TEST_REPORTER_ID: 3dfc7b128d751fb7905e3fc1b919d81b9203ef295341ea324305fac22a8be8bc
42-
with:
43-
coverageCommand: bin/rspec
41+
- name: Run RSpec
42+
run: bin/rspec

0 commit comments

Comments
 (0)