Fix unit tests #68
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, pull_request ] | |
jobs: | |
correctness: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 | |
with: | |
sdk: dev | |
- name: Install dependencies | |
run: dart pub upgrade | |
- name: Verify formatting | |
run: dart format --output=none --set-exit-if-changed . | |
- name: Analyze project source | |
run: dart analyze --fatal-infos | |
test-os: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
sdk: [ stable, beta, dev ] | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672 | |
with: | |
sdk: ${{ matrix.sdk }} | |
- name: Install dependencies | |
run: dart pub upgrade | |
- name: Run Tests | |
run: dart test | |
test-versions: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: [ "2.18", "2.19", "3.0", "beta" ] | |
container: | |
image: dart:${{ matrix.version }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: dart pub get | |
- name: Run tests | |
run: dart pub run test | |
test-windows: | |
timeout-minutes: 5 | |
runs-on: windows-latest | |
steps: | |
- name: Install dart | |
run: | | |
choco install dart-sdk | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: C:\tools\dart-sdk\bin\dart.exe pub get | |
- name: Run tests | |
run: C:\tools\dart-sdk\bin\dart.exe pub run test | |
test-macos: | |
timeout-minutes: 5 | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Tap Google's Dart formula repository | |
run: brew tap dart-lang/dart | |
- name: Install the Dart formula | |
run: brew install dart | |
- name: Install dependencies | |
run: dart pub get | |
- name: Run tests | |
run: dart pub run test |