Skip to content

ci: add basic workflows #1

ci: add basic workflows

ci: add basic workflows #1

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/[email protected]
- name: Get Dependencies
run: dart pub get
- name: Analyze
run: dart analyze .
- name: Check Format
run: dart format . --output=none --set-exit-if-changed
- name: Run tests
run: dart test --reporter expanded