Skip to content

Commit

Permalink
Merge pull request #106 from onk/use_setup_ruby
Browse files Browse the repository at this point in the history
Use setup-ruby instead of container-based setup
  • Loading branch information
onk authored Jan 12, 2025
2 parents 4c547de + 5e55970 commit c0f7623
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ on:
jobs:
test:
runs-on: ubuntu-latest
container: ${{ matrix.ruby }}
strategy:
fail-fast: false
matrix:
ruby:
- ruby:2.6
- ruby:2.7
- ruby:3.0
- ruby:3.1
- ruby:3.2
- rubylang/ruby:master-nightly-bionic
include:
- ruby: rubylang/ruby:master-nightly-bionic
allow_failures: "true"
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- head

steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Cache vendor/bundle
uses: actions/cache@v4
with:
Expand Down

0 comments on commit c0f7623

Please sign in to comment.