Skip to content

Commit

Permalink
add ci for ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ezekg committed Jan 1, 2024
1 parent 39bf8bb commit b2ac5d7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,18 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.3'
- '3.2'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
ruby-version: ${{matrix.ruby}}
bundler-cache: true
- name: Test
run: bundle exec rake test

0 comments on commit b2ac5d7

Please sign in to comment.