Update dependency flutter to v3.27.2 #272
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: Dart CI | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: leoafarias/fvm:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Flutter | |
run: fvm install | |
- name: Install dependencies | |
run: fvm flutter pub get | |
- name: Run tests | |
run: fvm flutter test | |
lint_publish_dryrun: | |
runs-on: ubuntu-latest | |
container: | |
image: leoafarias/fvm:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Flutter | |
run: fvm install | |
- name: Run publish dry run | |
run: fvm flutter pub publish --dry-run |