Skip to content

Fix ByteTrack handling of detections without confidence #6

Fix ByteTrack handling of detections without confidence

Fix ByteTrack handling of detections without confidence #6

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