Skip to content

chore(ci): create test workflow #1

chore(ci): create test workflow

chore(ci): create test workflow #1

Workflow file for this run

name: Analyze
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
- name: Verify formatting
run: dart format --set-exit-if-changed --output=none .
- name: Analyze project source
run: dart analyze
- name: Run tests
run: dart test