blob: c095a0f19d767ba08adafbbf46d8d842a3aa2ed7 [file] [log] [blame]
name: Dart
on:
schedule:
# “At 00:00 (UTC) on Sunday.”
- cron: '0 0 * * 0'
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
container:
image: google/dart:dev
steps:
- uses: actions/checkout@v3
- run: dart pub get
- run: dart format --output=none --set-exit-if-changed .
- run: dart analyze --fatal-infos
- run: dart test