Skip to content

Bump lints from 5.0.0 to 5.1.1 #12

Bump lints from 5.0.0 to 5.1.1

Bump lints from 5.0.0 to 5.1.1 #12

Workflow file for this run

name: Pull Request
on: [ pull_request ]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-dart
- run: dart pub get
- run: dart analyze
- run: dart format -o none --set-exit-if-changed .
test:
needs: analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-dart
- run: dart pub get
- run: dart test