Skip to content

chore: update dependency flutter to v3.27.1 #196

chore: update dependency flutter to v3.27.1

chore: update dependency flutter to v3.27.1 #196

Workflow file for this run

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