Skip to content

Remove iPad support #274

Remove iPad support

Remove iPad support #274

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
FLUTTER_VERSION: "3.7"
jobs:
lint:
name: Format and Analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
- name: Install dependencies
run: flutter pub get
- name: Format
run: dart format . --set-exit-if-changed
- name: Analyze
run: flutter analyze