diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml index 8f0dcc4..60e2fd5 100644 --- a/.github/workflows/dart.yml +++ b/.github/workflows/dart.yml @@ -1,9 +1,4 @@ -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. - -name: Flutter CI +name: Flutter on: push: @@ -16,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v3 - uses: subosito/flutter-action@v2 with: @@ -25,11 +20,5 @@ jobs: - name: Install dependencies run: flutter pub get - - name: Verify formatting - run: dart format --output=none --set-exit-if-changed . - - - name: Analyze project source - run: flutter analyze - - - name: Run tests - run: flutter test --platform chrome + - name: Run test/video_model_test.dart + run: flutter test test/video_model_test.dart