Skip to content

Commit

Permalink
add matrices
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnite committed Dec 23, 2024
1 parent f498819 commit 25b6e28
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -48,6 +47,13 @@ jobs:

unit-test-regz:
name: Unit Test Regz
strategy:
matrix:
os: [
ubuntu-latest,
windows-latest,
macos-latest,
]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand All @@ -62,6 +68,13 @@ jobs:

unit-test-uf2:
name: Unit Test UF2
strategy:
matrix:
os: [
ubuntu-latest,
windows-latest,
macos-latest,
]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand All @@ -76,6 +89,13 @@ jobs:

build-website:
name: Build Website
strategy:
matrix:
os: [
ubuntu-latest,
windows-latest,
macos-latest,
]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
Expand Down Expand Up @@ -115,7 +135,6 @@ jobs:
build-examples:
name: Build Examples
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
example_dir: [
Expand Down

0 comments on commit 25b6e28

Please sign in to comment.