Skip to content

Version update

Version update #16

Workflow file for this run

name: Lint Checking on PR
on:
pull_request:
env:
FLUTTER_VERSION: 3.35.7
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
- name: Configure repo
run: |
flutter pub get
flutter gen-l10n
- name: Lint Dart files
run: |
dart analyze --no-fatal-warnings