Skip to content

Dart CI

Dart CI #378

Workflow file for this run

name: Dart CI
on:
schedule:
# “At 00:00 (UTC) on Sunday.”
- cron: '0 0 * * 0'
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# https://github.com/dart-lang/setup-dart/blob/main/README.md
- uses: dart-lang/setup-dart@v1.3
- name: Install dependencies
run: dart pub get
- name: Analyze project source
run: dart analyze --fatal-infos
- name: Run tests
run: dart test