Bump desktop_drop from 0.6.1 to 0.7.0 in /example (#25) #172
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 Analyze + Unit Test | |
| on: push | |
| jobs: | |
| analyze-unit-test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| sdk: [stable] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Flutter SDK | |
| uses: flutter-actions/setup-flutter@v4 | |
| - name: Print Dart SDK version | |
| run: dart --version | |
| - name: Install dependencies | |
| run: flutter pub get | |
| - name: Analyze code | |
| run: dart analyze | |
| - name: Run Unit tests | |
| run: flutter test --coverage | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| slug: vicajilau/file_magic_number | |
| fail_ci_if_error: true | |
| verbose: true |