Skip to content
This repository has been archived by the owner on Jan 6, 2025. It is now read-only.

fix: change getCurrentPosition to getPositionStream #36

fix: change getCurrentPosition to getPositionStream

fix: change getCurrentPosition to getPositionStream #36

Workflow file for this run

name: Build app
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Build apk
run: flutter build apk --debug
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: app_debug
path: build/app/outputs/flutter-apk/app-debug.apk
integration-tests:
runs-on: ubuntu-latest
strategy:
matrix:
api-level: [ 34 ]
target: [ playstore ]
needs: [ build ]
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Retrieve dependencies
run: dart pub get
- name: Generate tests
run: dart run build_runner build --delete-conflicting-outputs
- 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: Run Flutter Driver tests
uses: reactivecircus/android-emulator-runner@v2
with:
target: ${{ matrix.target }}
api-level: ${{ matrix.api-level }}
arch: x86_64
profile: Nexus 6
script: flutter drive --driver=integration_test/driver.dart --target=integration_test/panoramax_test.dart