Skip to content

📝 Revise README.md to clarify project origin and streamline cont… #3

📝 Revise README.md to clarify project origin and streamline cont…

📝 Revise README.md to clarify project origin and streamline cont… #3

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@v4
- uses: subosito/flutter-action@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