chore: Refactor exports in playx.dart to improve organization and cla… #114
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: 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 |