youtube_explode/.github/workflows/dart.yml

22 lines
299 B
YAML

name: Dart CI
on:
push:
schedule:
- cron: '0 0 * * * '
jobs:
build:
runs-on: ubuntu-latest
container:
image: google/dart:latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: pub get
- name: Run tests
run: pub run test