Skip to content

Fix tests

Fix tests #28

Workflow file for this run

name: Format, Analyze and Test
on: [push]
jobs:
default_run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '21'
- uses: subosito/flutter-action@v2
with:
channel: "stable"
cache: true
- run: flutter pub get
- run: dart format --set-exit-if-changed lib
- run: dart analyze lib
- run: flutter test --no-pub