Skip to content

chore(deps): update actions/checkout action to v4 #5

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #5

Workflow file for this run

name: Test Package
on:
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
lint_and_test:
name: Linting and Testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: dart pub get
- run: dart format --fix --set-exit-if-changed .
- run: dart analyze
- run: dart test