Skip to content

Commit 7627472

Browse files
committed
Added CI run for Dart SDK 2.17.0
1 parent 2f940c5 commit 7627472

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/dart.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# separate terms of service, privacy policy, and support
44
# documentation.
55

6+
# See documentation here:
7+
# https://github.com/dart-lang/setup-dart/blob/main/README.md
8+
69
name: Dart
710

811
on:
@@ -14,15 +17,15 @@ on:
1417
jobs:
1518
build:
1619
runs-on: ubuntu-latest
17-
20+
strategy:
21+
matrix:
22+
sdk: [ stable, 2.17.0 ]
1823
steps:
1924
- uses: actions/checkout@v3
2025

21-
# Note: This workflow uses the latest stable version of the Dart SDK.
22-
# You can specify other versions if desired, see documentation here:
23-
# https://github.com/dart-lang/setup-dart/blob/main/README.md
24-
# - uses: dart-lang/setup-dart@v1
25-
- uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603
26+
- uses: dart-lang/setup-dart@v1
27+
with:
28+
sdk: ${{ matrix.sdk }}
2629

2730
- name: Install dependencies
2831
run: dart pub get

0 commit comments

Comments
 (0)