Skip to content

⬆️ Upgrade actions/deploy-pages action to v4.0.5 (#35) #82

⬆️ Upgrade actions/deploy-pages action to v4.0.5 (#35)

⬆️ Upgrade actions/deploy-pages action to v4.0.5 (#35) #82

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: subosito/flutter-action@fd55f4c5af5b953cc57a2be44cb082c8f6635e8e # v2
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