Skip to content

added example app and fixed route restore issue #6

added example app and fixed route restore issue

added example app and fixed route restore issue #6

Workflow file for this run

name: check
on:
pull_request:
push:
branches:
- main
# Cancel previous builds by only allowing one concurrent build per ref.
concurrency:
group: route_map_check-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
timeout-minutes: 10
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: subosito/flutter-action@v2
with:
channel: stable
- name: Get dependencies
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Run format check
run: dart format -o none --set-exit-if-changed $(find . -name '*.dart' ! -name '*.g.dart' ! -name '*.freezed.dart' ! -path '*/generated/*' ! -path '*/gen/*')