chore(deps): update dependency gradle to v8 #192
This file contains 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: Flutter test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/[email protected] | |
with: | |
channel: 'stable' | |
- name: Doctor | |
run: flutter doctor | |
- name: Install dependencies | |
run: flutter packages get | |
- name: Format | |
run: dart format lib test example --set-exit-if-changed | |
- name: Analyze | |
run: flutter analyze lib test example | |
- name: Run tests | |
run: flutter test --coverage --coverage-path=lcov.info | |
- uses: codecov/[email protected] |