chore(deps): bump actions/checkout from 6.0.3 to 7.0.0 #187
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: test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "lib/**" | |
| - "test/**" | |
| - "example/**" | |
| - "pubspec.yaml" | |
| - ".github/workflows/test.yaml" | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "lib/**" | |
| - "test/**" | |
| - "example/**" | |
| - "pubspec.yaml" | |
| - ".github/workflows/test.yaml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: 馃И Test | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | |
| timeout-minutes: 10 | |
| steps: | |
| - name: 馃摎 Checks-out repository | |
| uses: actions/checkout@v7.0.0 | |
| - name: 馃幆 Setup Dart | |
| uses: dart-lang/setup-dart@v1.7.2 | |
| - name: 馃摝 Install Dependencies | |
| run: dart pub upgrade | |
| - name: 馃И Run Tests | |
| run: dart run coverage:test_with_coverage --fail-under=99 | |
| - name: 馃挴 Upload Code Coverage | |
| uses: codecov/codecov-action@v7.0.0 | |
| with: | |
| files: ./coverage/lcov.info | |
| token: ${{ secrets.CODECOV_TOKEN }} |