This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
Fix bug around handling of failures in spawnWorker
calls (#87)
#233
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: | |
# Run on PRs and pushes to the default branch. | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: "0 0 * * 0" | |
env: | |
PUB_ENVIRONMENT: bot.github | |
jobs: | |
# Run the test script against the latest dev build. | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
sdk: [2.19.0, dev] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- uses: dart-lang/setup-dart@fedb1266e91cf51be2fdb382869461a434b920a3 | |
with: | |
sdk: ${{ matrix.sdk }} | |
- run: "dart format --output=none --set-exit-if-changed ." | |
- name: Test | |
run: ./tool/travis.sh |