Skip to content

Commit 187b838

Browse files
committed
feat(ci): update .github/workflows/dart.yml workflow
1 parent 37d755b commit 187b838

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/dart.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,16 @@ jobs:
2222
with:
2323
sdk: ${{ matrix.sdk }}
2424

25+
- name: Dart version
26+
run: dart --version
27+
- name: Flutter version
28+
run: flutter --version
29+
2530
- name: Run hello world
2631
run: |
2732
echo "main() { print('hello world'); }" > hello.dart
2833
dart hello.dart
34+
2935
test-dev:
3036
runs-on: ${{ matrix.os }}
3137
strategy:
@@ -43,6 +49,11 @@ jobs:
4349
sdk: ${{ matrix.sdk }}
4450
version: ${{ matrix.version }}
4551

52+
- name: Dart version
53+
run: dart --version
54+
- name: Flutter version
55+
run: flutter --version
56+
4657
- name: Run hello world
4758
run: |
4859
echo "main() { print('hello world'); }" > hello.dart
@@ -61,6 +72,11 @@ jobs:
6172
with:
6273
sdk: ${{ matrix.sdk }}
6374

75+
- name: Dart version
76+
run: dart --version
77+
- name: Flutter version
78+
run: flutter --version
79+
6480
- name: Global activate + run
6581
run: |
6682
dart pub global activate stagehand

0 commit comments

Comments
 (0)