This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
Dart CI #268
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" | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: dev | |
- id: install | |
run: dart pub get | |
- run: dart format --output=none --set-exit-if-changed . | |
if: steps.install.outcome == 'success' | |
- run: dart analyze --fatal-infos | |
if: steps.install.outcome == 'success' | |
test: | |
needs: analyze | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
sdk: [2.19.0, stable, dev] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- uses: dart-lang/setup-dart@b64355ae6ca0b5d484f0106a033dd1388965d06d | |
with: | |
sdk: ${{ matrix.sdk }} | |
- id: install | |
run: dart pub get | |
- run: dart test --platform vm | |
if: steps.install.outcome == 'success' | |
- run: dart test --platform chrome | |
if: steps.install.outcome == 'success' |