chore: update dependency flutter to v3.16.0 - autoclosed #104
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@v3 | |
- 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 run pub:get | |
- name: Run tests for our dart project. | |
run: | | |
melos run unit:test | |
- name: Check for any formatting and statically analyze the code. | |
run: | | |
melos run format | |
melos run analyze |