Add example for https://github.com/petitparser/dart-petitparser/discu… #489
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/setup-dart@v1.3 | |
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 | |
- name: "Chrome Tests" | |
run: dart test --platform chrome test/all_test.dart | |
- name: "Collect coverage" | |
run: | | |
dart pub global activate coverage | |
dart pub global run coverage:test_with_coverage --test test/all_test.dart | |
- name: "Upload coverage" | |
uses: codecov/codecov-action@v3 |