Skip to content

Commit

Permalink
ruby/setup-ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
shinokaro committed May 2, 2024
1 parent d6b9dd4 commit 0126512
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/test-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,18 @@ on:
- '*'
jobs:
run-tests:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
os: [ windows-latest ]
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', head ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.0
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- name: Build stub and run tests
Expand Down

0 comments on commit 0126512

Please sign in to comment.