FEDX-126 FED-1719 Null Safety Migration #480
Workflow file for this run
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: | |
- 'master' | |
- 'test_consume_*' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
sdk: [ 2.19.6 ] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: ${{ matrix.sdk }} | |
- id: install | |
name: Install dependencies | |
run: dart pub get | |
timeout-minutes: 2 | |
- name: Check formatting | |
run: dart format . -l 120 --set-exit-if-changed | |
if: ${{ always() && steps.install.outcome == 'success' }} | |
- name: Analyze project source | |
run: dart analyze | |
if: ${{ always() && steps.install.outcome == 'success' }} | |
- name: Run tests (DDC) | |
run: | | |
dart run build_runner test -- -P concurrent-tests | |
dart run build_runner test -- -P non-concurrent-tests | |
timeout-minutes: 10 | |
if: ${{ always() && steps.install.outcome == 'success' }} | |
- name: Run tests (dart2js) | |
run: | | |
dart run build_runner test -r -- -P concurrent-tests | |
dart run build_runner test -r -- -P non-concurrent-tests | |
timeout-minutes: 10 | |
if: ${{ always() && steps.install.outcome == 'success' }} |