Skip to content

Commit

Permalink
Add testing matrix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Wenger committed Feb 21, 2024
1 parent 8184745 commit e4a48be
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ on:
jobs:
build:
name: Execute Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"]
runs-on: ${{ matrix.os }}
permissions:
contents: read
packages: write
Expand All @@ -19,7 +24,8 @@ jobs:
- name: Set up Ruby 2.6
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.0, 2.7.0, 3.2.0
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- name: Retrieve bearer token
id: get_bearer_token
Expand Down

0 comments on commit e4a48be

Please sign in to comment.