Skip to content

Commit 7597827

Browse files
authored
Improve CI (#24)
1 parent e047f2e commit 7597827

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
continue-on-error: ${{ matrix.channel != 'stable' }}
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929
- name: Set up Ruby
3030
uses: ruby/setup-ruby@v1
3131
with:

.github/workflows/rubocop.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,17 @@ permissions:
1212
jobs:
1313
rubocop:
1414
name: Rubocop
15-
runs-on: ${{ matrix.os }}
15+
runs-on: ubuntu-latest
1616
env:
1717
BUNDLE_JOBS: 4
1818
BUNDLE_RETRY: 3
19-
strategy:
20-
matrix:
21-
os: [ubuntu-latest]
22-
ruby-version: ['4.0']
2319

2420
steps:
2521
- uses: actions/checkout@v4
2622
- name: Set up Ruby
2723
uses: ruby/setup-ruby@v1
2824
with:
29-
ruby-version: ${{ matrix.ruby-version }}
25+
ruby-version: '4.0'
3026
bundler-cache: true
3127
- name: Ruby linter
3228
run: bundle exec rubocop --format github

0 commit comments

Comments
 (0)