Skip to content

rename and format code #29

rename and format code

rename and format code #29

Workflow file for this run

name: Verification
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
- name: Get Flutter packages
run: flutter pub get
- name: Check formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze the source code
run: dart analyze
- name: Run tests
run: flutter test