Skip to content

Commit

Permalink
CI: Add Ruby 3.3 (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
olleolleolle authored Aug 19, 2024
1 parent 217e9d7 commit f8a8332
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,22 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/checkout@v4
- name: Set up Ruby 2.7
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true

- name: Standard
run:
bundle exec standardrb
- run: bundle exec standardrb
build:
needs: [linting]
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2']
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Ruby
uses: ruby/setup-ruby@v1
Expand All @@ -44,5 +40,4 @@ jobs:
bundler-cache: true

- name: Test
run: |
bundle exec rake
run: bundle exec rake

0 comments on commit f8a8332

Please sign in to comment.