Fix ByteTrack handling of detections without confidence #1
Workflow file for this run
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: Dart Trackers Flutter Example CI | |
| on: | |
| pull_request: | |
| paths: | |
| - "dart_trackers/**" | |
| - "flutter_example/**" | |
| - ".github/workflows/dart-trackers-flutter-example-ci.yml" | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| paths: | |
| - "dart_trackers/**" | |
| - "flutter_example/**" | |
| - ".github/workflows/dart-trackers-flutter-example-ci.yml" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| flutter-example: | |
| name: Flutter example checks | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| defaults: | |
| run: | |
| working-directory: flutter_example | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Flutter | |
| uses: subosito/flutter-action@v2 | |
| with: | |
| channel: stable | |
| cache: true | |
| - name: Install dependencies | |
| run: flutter pub get | |
| - name: Check formatting | |
| run: dart format --output=none --set-exit-if-changed . | |
| - name: Analyze | |
| run: flutter analyze | |
| - name: Test | |
| run: flutter test | |
| - name: Build web smoke test | |
| run: flutter build web --debug |