Dart CI #85
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dart CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: "0 0 * * 0" | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
name: "Dart CI" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/cache@v3 | |
with: | |
path: "~/.pub-cache/hosted" | |
key: "os:ubuntu-latest;pub-cache-hosted;dart:stable" | |
- uses: actions/checkout@v3 | |
- uses: dart-lang/[email protected] | |
with: | |
sdk: stable | |
- name: "Dependencies" | |
run: dart pub upgrade --no-precompile | |
- name: "Dart Analyzer" | |
run: dart analyze --fatal-infos . | |
- name: "Dart Formatter" | |
run: dart format --output=none --set-exit-if-changed . | |
- name: "VM Tests" | |
run: dart test --platform vm test/all_test.dart |