Skip to content

Disable two lint rules which are being removed. #37

Disable two lint rules which are being removed.

Disable two lint rules which are being removed. #37

Workflow file for this run

name: PR workflow
on:
- pull_request
jobs:
analyze:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: dart-lang/[email protected]
with:
sdk: 3.1.0
- run: dart pub get
- run: dart analyze --fatal-infos --fatal-warnings
format:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: dart-lang/[email protected]
with:
sdk: 3.1.0
- run: dart format --output none --set-exit-if-changed .\example\ .\lib\ .\test\
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: dart-lang/[email protected]
with:
sdk: 3.1.0
- run: dart test