docs: reorganize README structure, add FlexTrack Inspector section fo… #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| analyze-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| - run: flutter pub get | |
| - run: dart format --output=none --set-exit-if-changed lib test example/lib example/integration_test examples/static_app/lib examples/riverpod_app/lib examples/bloc_getit_app/lib | |
| - run: flutter analyze | |
| - run: flutter test | |
| - run: cd example && flutter pub get && flutter analyze | |
| - run: cd example && flutter test integration_test | |
| - run: cd examples/static_app && flutter pub get && flutter analyze && flutter test | |
| - run: cd examples/riverpod_app && flutter pub get && flutter analyze && flutter test | |
| - run: cd examples/bloc_getit_app && flutter pub get && flutter analyze && flutter test |