ci: fix android workflow (#273) #276
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
quality: | |
name: Quality Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v1 | |
with: | |
channel: stable | |
- name: Get Packages | |
run: flutter pub get | |
- name: Analyze | |
run: flutter analyze | |
- name: Format | |
run: dart format . --set-exit-if-changed | |
- name: Publishability | |
run: flutter pub publish --dry-run | |
- name: Test | |
run: flutter test --coverage | |
- name: Archieve Golden Failures | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Golden failures | |
retention-days: 2 | |
path: | | |
**/test/**/failures/**/*.* | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- uses: VeryGoodOpenSource/very_good_coverage@v1.2.0 | |
android: | |
name: Android Integration Tests | |
needs: quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v1 | |
with: | |
channel: stable | |
- name: Enable KVM | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Run Android Integration Tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 29 | |
working-directory: example | |
script: flutter test integration_test/android_test.dart -d emulator-5554 | |
# iOS Test based on https://medium.com/flutter-community/run-flutter-driver-tests-on-github-actions-13c639c7e4ab | |
# by @kate_sheremet | |
ios: | |
name: iOS Integration Tests | |
needs: quality | |
strategy: | |
matrix: | |
device: | |
- "iPhone 14" | |
fail-fast: false | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest | |
- name: Download iOS 17 | |
run: xcodebuild -downloadPlatform ios | |
- uses: subosito/flutter-action@v1 | |
with: | |
channel: stable | |
- uses: futureware-tech/simulator-action@v1 | |
id: simulator | |
with: | |
model: ${{ matrix.device }} | |
- name: "Run iOS integration tests" | |
run: flutter test integration_test/ios_test.dart -d ${{steps.simulator.outputs.udid}} | |
working-directory: example |