Skip to content

chore: update lint workflow Flutter version #16

chore: update lint workflow Flutter version

chore: update lint workflow Flutter version #16

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: lint
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.22.2"
- name: Install flutter dependencies
run: flutter pub get
lint-checks:
name: Check linting
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.22.2"
- name: Install flutter dependencies
run: flutter pub get
- name: Analyze project source
run: flutter analyze