Skip to content

Commit 8246550

Browse files
committed
specify shell
1 parent e364fd9 commit 8246550

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/actions/app_validation/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,27 @@ runs:
77
uses: kuhnroyal/flutter-fvm-config-action/setup@v3
88

99
- name: Install linux integration test dependencies
10+
shell: bash
1011
run: sudo apt-get update && sudo apt-get install -y libglu1-mesa xvfb
1112

1213
- name: Get dependencies
14+
shell: bash
1315
run: flutter pub get
1416

1517
- name: Check dart formatting
18+
shell: bash
1619
run: dart format -o none --set-exit-if-changed .
1720

1821
- name: Check dart analysis
22+
shell: bash
1923
run: dart analyze --fatal-infos --fatal-warnings .
2024

2125
- name: Run unit tests
26+
shell: bash
2227
run: flutter test
2328

2429
- name: Run linux integration tests
30+
shell: bash
2531
run: |
2632
export DISPLAY=:99 # Set display for Xvfb
2733
xvfb-run -a flutter test integration_test/app_test.dart -d linux

0 commit comments

Comments
 (0)