Skip to content

Commit

Permalink
fix: update GitHub Actions workflow to use bash shell and improve int…
Browse files Browse the repository at this point in the history
…egration test commands
  • Loading branch information
khoren93 committed Dec 2, 2024
1 parent 678f1f1 commit 18d081d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ jobs:
# Run tests
- name: Run tests for ${{ matrix.target }} on ${{ matrix.os }}
shell: bash
run: |
cd ./example
if [ "${{ matrix.target }}" == "linux" ]; then
Expand Down Expand Up @@ -251,4 +252,7 @@ jobs:
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim
script: |
flutter devices
cd ./example && flutter test integration_test --verbose
adb devices
adb shell getprop
cd ./example
flutter test integration_test --verbose

0 comments on commit 18d081d

Please sign in to comment.