Skip to content

Bump flutter_lints from 2.0.3 to 3.0.1 #49

Bump flutter_lints from 2.0.3 to 3.0.1

Bump flutter_lints from 2.0.3 to 3.0.1 #49

Workflow file for this run

name: Build
on:
push:
branches: [ main, feature/** ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Flutter version
run: flutter --version
- name: Install dependencies
run: flutter pub get
- name: Format
run: dart format --set-exit-if-changed lib test
- name: Analyze
run: flutter analyze lib test
- name: Run tests
run: flutter test --no-pub --coverage --test-randomize-ordering-seed random