Skip to content

⬆️ Upgrade subosito/flutter-action action to v2.22.0 (#39) #90

⬆️ Upgrade subosito/flutter-action action to v2.22.0 (#39)

⬆️ Upgrade subosito/flutter-action action to v2.22.0 (#39) #90

Workflow file for this run

name: Dart & Flutter CI
on:
push:
jobs:
analyze:
name: Dart & Flutter CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: subosito/flutter-action@0ca7a949e71ae44c8e688a51c5e7e93b2c87e295 # v2.22.0
with:
channel: stable
cache: true
- name: Install dependencies
run: flutter pub get
- name: Format check
run: dart format --set-exit-if-changed .
- name: Analyze
run: flutter analyze
- name: Run tests
run: flutter test