Skip to content

Merge pull request #109 from prateekmedia/next #1

Merge pull request #109 from prateekmedia/next

Merge pull request #109 from prateekmedia/next #1

Workflow file for this run

name: FlutterLint
on:
push:
branches:
- main
env:
FLUTTER_VERSION: "3.19.5"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup flutter
uses: subosito/flutter-action@master
with:
channel: stable
flutter-version: ${{ env.FLUTTER_VERSION }}
cache: true
- name: Install dependencies
run: flutter pub get
- name: Run lint check
run: flutter analyze --no-fatal-infos