fix analyser error #19
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 | |
- name: "Chrome Tests" | |
run: dart test --platform chrome | |
- name: "Collect coverage" | |
run: | | |
dart pub global activate coverage | |
dart pub global run coverage:test_with_coverage | |
- name: "Upload coverage" | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
verbose: true | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |