Skip to content

Commit bae4cf4

Browse files
authored
#6 Update CI
2 parents 13fc60d + dbc37f2 commit bae4cf4

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

.github/workflows/pull-request.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ jobs:
66
fail-fast: false
77
matrix:
88
os: [ubuntu-latest, macos-latest]
9-
ruby: ['3.1', '3.2', head]
9+
ruby: ["3.2", "3.3", "3.4"]
1010
runs-on: ${{ matrix.os }}
1111
steps:
12-
- uses: actions/checkout@v3
13-
- uses: ruby/setup-ruby@v1
14-
with:
15-
ruby-version: ${{ matrix.ruby }}
16-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
17-
- run: bundle exec rake
12+
- uses: actions/checkout@v5
13+
- uses: ruby/setup-ruby@v1
14+
with:
15+
ruby-version: ${{ matrix.ruby }}
16+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
17+
- run: bundle exec rake

.github/workflows/push.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,19 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [ubuntu-latest, macos-latest]
11-
ruby: ['3.1', '3.2', head]
11+
ruby: ["3.2", "3.3", "3.4"]
1212
runs-on: ${{ matrix.os }}
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v5
1515
- uses: ruby/setup-ruby@v1
1616
with:
1717
ruby-version: ${{ matrix.ruby }}
1818
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
19-
- uses: paambaati/codeclimate-action@v4.0.0
19+
20+
- name: Run tests & linter
21+
run: bundle exec rake
22+
23+
- uses: qltysh/qlty-action/coverage@v2
2024
with:
21-
coverageCommand: bundle exec rake
22-
debug: true
25+
token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
26+
files: ./coverage/.resultset.json

Gemfile.lock

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ GEM
9494

9595
PLATFORMS
9696
arm64-darwin-22
97+
arm64-darwin-23
9798
x86_64-darwin-20
9899
x86_64-linux
99100

0 commit comments

Comments
 (0)