Skip to content

Commit

Permalink
CI: Add a strtegy for matrix and runs-on
Browse files Browse the repository at this point in the history
Co-authored-by: mattip <[email protected]>
  • Loading branch information
HaoZeke and mattip committed Feb 4, 2024
1 parent 3a10c14 commit b9422bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,10 @@ jobs:

test_env:
name: test_environments
runs-on: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.OS }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest"]
fail-fast: false
timeout-minutes: 10
steps:
Expand Down

0 comments on commit b9422bb

Please sign in to comment.