Skip to content

Commit

Permalink
Merge pull request #57 from envato/ruby-3.3
Browse files Browse the repository at this point in the history
CI: Test on Ruby 3.3
  • Loading branch information
orien authored Feb 5, 2024
2 parents 974d699 + 140d0cc commit 3d7cbef
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
name: test

on: [push,pull_request]

on: [push, pull_request]
jobs:
test:
strategy:
matrix:
ruby: ["2.7", "3.0", "3.1", "3.2"]
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"]
runs-on: ubuntu-latest
name: Test (Ruby ${{ matrix.ruby }})
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Run the default task
run: |
bundle install
bundle exec rake
bundler-cache: true
- run: bundle exec rake

0 comments on commit 3d7cbef

Please sign in to comment.