Skip to content

Dart

Dart #506

Workflow file for this run

name: Dart
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: "0 0 * * 0"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sdk: [3.7, dev]
steps:
# These are the latest versions of the github actions; dependabot will
# send PRs to keep these up-to-date.
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
- uses: dart-lang/setup-dart@e51d8e571e22473a2ddebf0ef8a2123f0ab2c02c
with:
sdk: ${{ matrix.sdk }}
- run: dart pub get
id: install
- run: dart format --output=none --set-exit-if-changed .
if: matrix.sdk == 'dev' && steps.install.outcome == 'success'
- run: dart analyze --fatal-infos
if: matrix.sdk == 'dev' && steps.install.outcome == 'success'
- run: dart test
if: matrix.sdk != 'dev' && steps.install.outcome == 'success'
- run: dart pub global activate coverage
if: matrix.sdk == 'dev' && steps.install.outcome == 'success'
id: install_pkg_coverage
- run: dart pub global run coverage:test_with_coverage
if: matrix.sdk == 'dev' && steps.install_pkg_coverage.outcome == 'success'
id: test_with_coverage
- uses: coverallsapp/github-action@5cbfd81b66ca5d10c19b062c04de0199c215fb6e
if: matrix.sdk == 'dev' && steps.test_with_coverage.outcome == 'success'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}