Skip to content

feat: integrate playx_navigation v2.0.0 — add PlayxPageConfig support #122

feat: integrate playx_navigation v2.0.0 — add PlayxPageConfig support

feat: integrate playx_navigation v2.0.0 — add PlayxPageConfig support #122

Workflow file for this run

name: test
on:
push:
branches: [main , qa]
jobs:
test:
defaults:
run:
working-directory: ./
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1.5.3
- name: Install deps
run: flutter packages get
- name: Format code
run: dart format .
- name: Analyze Code
run: flutter analyze lib test example
- name: Test Publish
run: dart pub publish --dry-run
- name: Test
run: flutter test --coverage
- name: Check Test Coverage
uses: VeryGoodOpenSource/very_good_coverage@v1.2.0
with:
min_coverage: 89