Skip to content

Commit

Permalink
CI: add Rubies 3.0-3.3 to the test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
orien committed Jan 25, 2024
1 parent 4d1266f commit d893ebd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ on:

jobs:
test:
runs-on: ${{ matrix.operating_system }}
runs-on: ${{ matrix.operating_system }}-latest
strategy:
matrix:
operating_system: [ ubuntu-latest, macos-latest ]
ruby_version: [ 2.6, 2.7 ]
operating_system: [ ubuntu ]
ruby_version: [ '2.6', '2.7', '3.0', '3.1', '3.2', '3.3' ]
include:
- { operating_system: macos, ruby_version: '3.2' }
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby_version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake
bundler-cache: true
- run: bundle exec rake

0 comments on commit d893ebd

Please sign in to comment.