Skip to content

chore: fix deprecations #121

chore: fix deprecations

chore: fix deprecations #121

Workflow file for this run

name: Check and Lint
on:
pull_request:
push:
branches:
- main
jobs:
check_and_lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225 # v2.12.0
with:
channel: stable
- name: Install Dependencies (example)
run: flutter pub get
working-directory: ./example
- name: Install Dependencies (example data)
run: flutter pub get
working-directory: ./example/data
- name: Check format
run: dart format . --output=none --set-exit-if-changed
- name: Analyze
run: flutter analyze
- name: Test
run: flutter test