Skip to content

offline maps

offline maps #6

Workflow file for this run

name: CI
on:
pull_request:
branches: [main, dev]
workflow_dispatch:
permissions:
contents: read
jobs:
analyze:
name: Analyze & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter pub get
- run: dart run build_runner build --delete-conflicting-outputs
- run: dart format --output=none --set-exit-if-changed .
- run: flutter analyze
#- run: flutter test
# no tests yet, fails without ./test directory