Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit 1804465

Browse files
authored
+ matrix
1 parent 2913d85 commit 1804465

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,17 @@ env:
1515
jobs:
1616
build:
1717
runs-on: ubuntu-latest
18+
strategy:
19+
fail-fast: false
20+
matrix:
21+
sdk: [dev, stable]
1822

1923
steps:
2024
- uses: actions/checkout@v2
2125
- uses: dart-lang/setup-dart@v1
2226
with:
23-
sdk: dev
24-
27+
sdk: ${{ matrix.sdk }}
28+
2529
- name: pub get
2630
run: dart pub get
2731

0 commit comments

Comments
 (0)