Skip to content

[gh] restructure wf files #2

[gh] restructure wf files

[gh] restructure wf files #2

Workflow file for this run

name: Check
on:
push:
jobs:
analyze:
runs-on: ubuntu-latest
steps:
# Call setup_env workflow to setup workspace
- uses: ./.github/workflows/setup_env.yml
# Check for any formatting issues in the code.
- run: dart format --set-exit-if-changed .
# Statically analyze the Dart code for any errors.
- run: dart analyze .
# Run widget tests for our flutter project.
# - run: flutter test