Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
oldratlee committed Nov 22, 2023
1 parent 3b92d9d commit 7e75aa2
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,20 @@ on: [ push, pull_request, workflow_dispatch ]
jobs:

test:
runs-on: ${{ matrix.os }}
runs-on: ${{ fromJSON(matrix.os_deps).os }}
timeout-minutes: 5
strategy:
matrix:
os: [ ubuntu-latest, macos-11, macos-latest ]
os_deps:
- |
{"os": "ubuntu-latest"}
- |
{"os": "macos-11"}
- |
{"os": "macos-latest"}
fail-fast: false
max-parallel: 64
name: Test on ${{ matrix.os }}
name: Test on ${{ (matrix.os_deps }}

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 7e75aa2

Please sign in to comment.