Skip to content

Commit

Permalink
Test up to Ruby 3.3 (#4)
Browse files Browse the repository at this point in the history
* Test up to Ruby 3.3

* Apply suggestions from code review

---------

Co-authored-by: Tate Thurston <tatthurs@twitch.tv>
  • Loading branch information
tatthurs and Tate Thurston authored Jul 16, 2024
1 parent 4effaa9 commit 579a68e
Showing 1 changed file with 13 additions and 16 deletions.
29 changes: 13 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,21 @@ on:
jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
ruby: ['2.7', '3.0', '3.1']

ruby: ["3.0", "3.1", "3.2", "3.3"]
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- name: Runs code QA and tests
env:
COVERAGE: no
run: |
sudo apt-get update
sudo apt-get install openjdk-8-jdk
bundle
bundle exec rake rspec
- name: Runs code QA and tests
env:
COVERAGE: no
run: |
bundle exec rake rspec

0 comments on commit 579a68e

Please sign in to comment.