feat(parkings): replace decimal numbers with integers & make sure tha… #441
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint & formatting | |
on: | |
push: | |
branches: ["**"] | |
pull_request: | |
branches: ["**"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: "3.24.0" | |
channel: "stable" | |
- run: flutter --version | |
- name: Install dependencies | |
run: dart pub get | |
- name: Example .env | |
run: cp example.env .env | |
- name: generate files | |
run: dart run build_runner build --delete-conflicting-outputs | |
- name: Verify formatting | |
run: dart format --output=none --set-exit-if-changed . | |
- name: Analyze project source | |
run: flutter analyze --fatal-infos |