Skip to content

Commit

Permalink
ci: strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
kijimaD committed Oct 21, 2023
1 parent 1f9d549 commit 9641c48
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,21 @@ jobs:
build:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: build
run: make build

run:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: run
Expand All @@ -51,7 +57,10 @@ jobs:
test:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: test
Expand Down

0 comments on commit 9641c48

Please sign in to comment.