Skip to content

Commit

Permalink
[CI] add Ruby 3.2+3.3, head
Browse files Browse the repository at this point in the history
  • Loading branch information
David Crosby committed Dec 13, 2024
1 parent 9aa2b8f commit 788f00d
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
---
name: Ruby
on:
'on':
push:
branches: [ main ]
branches:
- main
pull_request:
branches: [ main ]
branches:
- main
permissions:
contents: read
jobs:
Expand All @@ -13,13 +16,18 @@ jobs:
BUNDLE_WITH: development
strategy:
matrix:
ruby-version: ['3.0', '3.1']
ruby-version:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- head
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
ruby-version: "${{ matrix.ruby-version }}"
bundler-cache: true
- name: Run tests
run: bundle exec rake

0 comments on commit 788f00d

Please sign in to comment.