Skip to content

chore: clean linter problems #26

chore: clean linter problems

chore: clean linter problems #26

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
- run: flutter pub get
- name: Analyze project source
run: dart analyze
- name: Format code
run: dart format --fix .
- name: Run tests
run: flutter test