Skip to content

rfac: full refactor; removed flutter hooks #5

rfac: full refactor; removed flutter hooks

rfac: full refactor; removed flutter hooks #5

Workflow file for this run

name: 🛠️ Lint and Test
on: [push, workflow_dispatch]
jobs:
drive:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.22.0
- run: flutter --version
- name: Dart Apply Fixes (if this fails, run `dart fix --apply` locally)
run: dart fix --apply; git diff --exit-code
- name: Dart Formatter (if this fails, run `dart format .` locally)
run: dart format .; git diff --exit-code
- name: Restore packages
run: flutter pub get
- name: Analyze
run: flutter analyze
- name: Run Tests without coverage
run: flutter test