blob: 87a1201b51eb41ce0db2b7fc671e91ec7d320c98 [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@v2
- run: dart pub get
- run: dart format --output=none --set-exit-if-changed .
- run: dart analyze
- run: dart test