Skip to content

Commit

Permalink
Merge pull request #5 from wuest/slim-down-ci
Browse files Browse the repository at this point in the history
Remove EOL ruby, run rubocop only once
  • Loading branch information
wuest authored Aug 6, 2024
2 parents 8775801 + b68b555 commit d0683db
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ 'ubuntu-20.04', 'ubuntu-22.04' ]
ruby-version: ['3.0', '3.1', '3.2', '3.3']
ruby-version: ['3.1', '3.2', '3.3']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -28,5 +28,18 @@ jobs:
bundler-cache: true
- name: Run tests
run: bundle exec rake
lint:
strategy:
matrix:
os: [ 'ubuntu-22.04' ]
ruby-version: ['3.3']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Rubocop
run: bundle exec rubocop

0 comments on commit d0683db

Please sign in to comment.