-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
23 additions
and
30 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 |
---|---|---|
|
@@ -7,21 +7,32 @@ on: | |
|
||
jobs: | ||
test: | ||
name: Test on ${{ matrix.os }} / ${{ matrix.dart }} | ||
name: Test on ${{ matrix.os }} / dart ${{ matrix.dart }} | ||
runs-on: ${{ matrix.os }} | ||
defaults: | ||
run: | ||
working-directory: packages/process_run | ||
working-directory: . | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
dart: [3.0.5, stable, beta, dev] | ||
include: | ||
- os: ubuntu-latest | ||
dart: 3.0.5 | ||
- os: ubuntu-latest | ||
dart: stable | ||
- os: ubuntu-latest | ||
dart: beta | ||
- os: ubuntu-latest | ||
dart: dev | ||
- os: windows-latest | ||
dart: stable | ||
- os: macos-latest | ||
dart: stable | ||
steps: | ||
- uses: dart-lang/[email protected] | ||
with: | ||
sdk: ${{ matrix.dart }} | ||
- uses: actions/checkout@v4 | ||
- run: dart --version | ||
- run: dart pub get | ||
- run: dart run tool/run_ci.dart | ||
- run: dart pub global activate dev_build | ||
- run: dart pub global run dev_build:run_ci |
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 |
---|---|---|
|
@@ -8,21 +8,22 @@ on: | |
|
||
jobs: | ||
test: | ||
name: Test on ${{ matrix.os }} / ${{ matrix.dart }} | ||
name: Test on ${{ matrix.os }} / dart ${{ matrix.dart }} | ||
runs-on: ${{ matrix.os }} | ||
defaults: | ||
run: | ||
working-directory: . | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
dart: [stable] | ||
include: | ||
- os: ubuntu-latest | ||
dart: stable | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dart-lang/[email protected] | ||
with: | ||
sdk: ${{ matrix.dart }} | ||
- run: dart --version | ||
- run: dart pub global activate dev_test | ||
- run: dart pub global run dev_test:run_ci --pub-downgrade --analyze --no-override --recursive | ||
- run: dart pub global activate dev_build | ||
- run: dart pub global run dev_build:run_ci --pub-downgrade --analyze --no-override --recursive |
This file was deleted.
Oops, something went wrong.