Skip to content

Commit

Permalink
ci: run workflows with matrix strategy for each OS (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
threeal authored Aug 3, 2023
1 parent 1aecda6 commit 0f792d2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ on:
branches: [latest, main]
jobs:
package:
runs-on: macos-latest
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [windows, ubuntu, macos]
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
Expand Down

0 comments on commit 0f792d2

Please # to comment.