chore: update dependency flutter to v3.27.1 #196
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: | |
pull_request: {} | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build: | |
name: Run on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: stable | |
- name: Set environment | |
run: echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH | |
- name: Get dependencies | |
run: | | |
dart pub global activate melos | |
melos get | |
- name: Run tests for our dart project. | |
run: | | |
melos test | |
- name: Check for any formatting and statically analyze the code. | |
run: | | |
melos format | |
melos analyze |