-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ And start building on stable instead of 2.8.4 since dart-lang/sdk#42977 has been resolved by the over_react builder
- Loading branch information
1 parent
71fa588
commit db0bef9
Showing
3 changed files
with
85 additions
and
23 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
name: Dart CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
- 'test_consume_*' | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
validate: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
sdk: [ 2.7.2, stable, dev ] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: dart-lang/setup-dart@v0.2 | ||
with: | ||
sdk: ${{ matrix.sdk }} | ||
|
||
- name: Print Dart SDK version | ||
run: dart --version | ||
|
||
- id: install | ||
name: Install dependencies | ||
run: pub get | ||
|
||
- name: Validate dependencies | ||
run: pub run dependency_validator -i coverage,build_runner,build_test,build_web_compilers,meta,pedantic | ||
if: always() && steps.install.outcome == 'success' | ||
|
||
- name: Analyze project source | ||
run: if [ ${{ matrix.sdk }} = '2.7.2' ]; then pub global activate tuneup && tuneup check --ignore-infos; else pub run dart_dev analyze; fi | ||
if: always() && steps.install.outcome == 'success' | ||
|
||
test_ddc: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
sdk: [ 2.7.2, stable, dev ] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: dart-lang/setup-dart@v0.2 | ||
with: | ||
sdk: ${{ matrix.sdk }} | ||
|
||
- name: Print Dart SDK version | ||
run: dart --version | ||
|
||
- id: install | ||
name: Install dependencies | ||
run: pub get | ||
|
||
- name: Run tests (DDC) | ||
run: pub run dart_dev test test/over_react_test.dart | ||
if: always() && steps.install.outcome == 'success' | ||
|
||
test_dart2js: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
sdk: [ 2.7.2, stable, dev ] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: dart-lang/setup-dart@v0.2 | ||
with: | ||
sdk: ${{ matrix.sdk }} | ||
|
||
- name: Print Dart SDK version | ||
run: dart --version | ||
|
||
- id: install | ||
name: Install dependencies | ||
run: pub get | ||
|
||
- name: Run tests (dart2js) | ||
run: pub run dart_dev test test/over_react_test.dart -r | ||
if: always() && steps.install.outcome == 'success' |
This file was deleted.
Oops, something went wrong.
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