Skip to content

chore(deps): bump path_provider from 2.1.3 to 2.1.4 #509

chore(deps): bump path_provider from 2.1.3 to 2.1.4

chore(deps): bump path_provider from 2.1.3 to 2.1.4 #509

Workflow file for this run

name: tests
on:
push:
branches:
- main
paths:
- "lib/**"
- "test/**"
- "integration_test/**"
- "pubspec.yaml"
- ".github/workflows/test.yaml"
pull_request:
branches:
- main
paths:
- "lib/**"
- "test/**"
- "integration_test/**"
- "pubspec.yaml"
- ".github/workflows/test.yaml"
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@v4
- name: Install Flutter
uses: subosito/[email protected]
with:
cache: true
- name: Install app dependencies
run: flutter pub get
- name: Test app
run: flutter test --coverage --no-pub
- name: Check Code Coverage
uses: VeryGoodOpenSource/[email protected]
with:
min_coverage: 92
exclude: "**/*.g.dart **/*.gen.dart **/*.freezed.dart"
- name: Upload Code Coverage
uses: codecov/codecov-action@v4
with:
file: ./coverage/lcov.info
token: ${{ secrets.CODECOV_TOKEN }}