Skip to content

v2.0.5

v2.0.5 #5

Workflow file for this run

name: Pull Request Pipeline
on:
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.32.0"
channel: "stable"
cache: true
- name: Install dependencies
run: flutter pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze project source
run: flutter analyze
- name: Build example
run: |
cd example
flutter pub get
flutter build ios --no-codesign
flutter build apk --debug