Skip to content

ci: fix paths

ci: fix paths #563

Workflow file for this run

name: Lint | Test
on: [ push, pull_request ]
permissions: read-all
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Analyze
run: |
flutter pub get
dart analyze --fatal-infos
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Format
run: dart format -l 120 --set-exit-if-changed ./lib