Skip to content

[fixed] v0.0.8 update the clean code and fixed pass static analysis #4

[fixed] v0.0.8 update the clean code and fixed pass static analysis

[fixed] v0.0.8 update the clean code and fixed pass static analysis #4

Workflow file for this run

name: Dart
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v1
- name: Install dependencies
run: flutter pub get
# Uncomment this step to verify the use of 'flutter format' on each commit.
# - name: Verify formatting
# run: flutter format --output=none --set-exit-if-changed .
# Consider passing '--fatal-infos' for slightly stricter analysis.
- name: Analyze project source
run: flutter analyze
- name: Run tests
run: flutter test