Skip to content

no it will not extract :/ #150

no it will not extract :/

no it will not extract :/ #150

Workflow file for this run

# Main Dart tests and checks
name: Dart tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- run: dart pub get
- run: dart test
formatting-and-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- run: dart pub get
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
- run: dart analyze --fatal-infos