blob: dd472b07263f976f6866157e49e038bc70e50d63 [file] [log] [blame]
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.0.0, dev]
steps:
# These are the latest versions of the github actions; dependabot will
# send PRs to keep these up-to-date.
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- uses: dart-lang/setup-dart@fedb1266e91cf51be2fdb382869461a434b920a3
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@master
if: matrix.sdk == 'dev' && steps.test_with_coverage.outcome == 'success'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}