Skip to content

chore: bump flutter to 3.27.4 #1438

chore: bump flutter to 3.27.4

chore: bump flutter to 3.27.4 #1438

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:
channel: "stable"
flutter-version-file: pubspec.yaml
- run: flutter --version
- name: Install dependencies
run: flutter 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
- name: riverpod custom lint
run: dart run custom_lint
- name: Hex Color Converters test
run: flutter test test/hex_color_converters_test.dart