Skip to content

Commit

Permalink
Update ruby.yml
Browse files Browse the repository at this point in the history
- Add more Ruby versions
- Change 'ubuntu-latest' to 'ubuntu-20.04' (ruby/setup-ruby#496)
- Change ruby/setup-ruby version to v1.152.0
  • Loading branch information
konsolebox committed Jun 24, 2023
1 parent 7b0592c commit 98577a0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
test_unix:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
ruby-version: ['2.2', '2.6', '2.7', '3.0', '3.1']
os: [ubuntu-20.04, macos-latest]
ruby-version: ['2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2']
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@cd9d3de43b264c20364fa16fc29fb0e0f3ebbd12
- uses: ruby/setup-ruby@v1.152.0
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
Expand All @@ -29,12 +29,12 @@ jobs:
test_windows:
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1']
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@cd9d3de43b264c20364fa16fc29fb0e0f3ebbd12
- uses: ruby/setup-ruby@v1.152.0
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
Expand Down

0 comments on commit 98577a0

Please sign in to comment.