Skip to content

Release 0.2.0 prep

Release 0.2.0 prep #10

Workflow file for this run

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