Skip to content

Commit

Permalink
use a matrix in the generation job
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Nov 30, 2023
1 parent 50bd60f commit 10f3418
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,17 @@ jobs:
# Ensure the generation script runs.
generation:
needs: analyze
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
sdk: [stable]
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d
with:
sdk: ${{ matrix.sdk }}
- name: Install Dart dependencies
run: dart pub get
- name: Install Node dependencies
Expand Down

0 comments on commit 10f3418

Please sign in to comment.