Skip to content

Commit

Permalink
ci: test ruby 3.0 in the github actions macos tests
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Dec 31, 2020
1 parent 4d98dad commit ccfd200
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,14 @@ on:
jobs:
cruby-test-system-libraries:
runs-on: macos-latest
strategy:
matrix:
ruby: ["2.7", "3.0"]
steps:
- uses: actions/checkout@master
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.7'
ruby-version: ${{ matrix.ruby }}
- uses: actions/cache@v2
with:
path: vendor/bundle
Expand All @@ -36,11 +39,14 @@ jobs:

cruby-test-vendored-libraries:
runs-on: macos-latest
strategy:
matrix:
ruby: ["2.7", "3.0"]
steps:
- uses: actions/checkout@master
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.7'
ruby-version: ${{ matrix.ruby }}
- uses: actions/cache@v2
with:
path: vendor/bundle
Expand Down

0 comments on commit ccfd200

Please sign in to comment.