Skip to content

Dart CI

Dart CI #75

Workflow file for this run

name: Dart CI
on:
schedule:
- cron: "0 0 * * 0" # runs on every Sunday
defaults:
run:
shell: bash
env:
PUB_ENVIRONMENT: bot.github
permissions: read-all
jobs:
weekly-tests:
# These tests are run as a sanity-check, usually involving external data or systems.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
- uses: dart-lang/setup-dart@f0ead981b4d9a35b37f30d36160575d60931ec30
- name: Install dependencies
run: dart pub get
working-directory: app
- name: Run test
run: dart test -P sanity -t sanity
working-directory: app