blob: 37f57d23c186053b9a601f38ff785fcda0813e5c [file] [log] [blame]
name: Dart
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: google/dart:dev
steps:
- uses: actions/checkout@v2
- name: pub get
run: pub get
- name: dart format
run: dart format --output=none --set-exit-if-changed .
- name: dart analyze
run: dart analyze
- name: dart test
run: dart test