Skip to content

Commit 2217f20

Browse files
committed
other oops
1 parent e632f76 commit 2217f20

File tree

2 files changed

+17
-18
lines changed

2 files changed

+17
-18
lines changed

.github/workflows/file.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,20 @@ jobs:
3535
- run: dart pub get
3636
- run: dart format --output=none --set-exit-if-changed .
3737
- run: dart analyze --fatal-infos
38+
39+
test:
40+
runs-on: ${{ matrix.os }}
41+
strategy:
42+
matrix:
43+
package: [file]
44+
os: [ubuntu-latest, macos-latest, windows-latest]
45+
sdk: [stable, dev]
46+
47+
steps:
48+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
49+
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
50+
with:
51+
sdk: ${{ matrix.sdk }}
52+
53+
- run: dart pub get
54+
- run: dart pub run test -j1

.github/workflows/file_testing.yaml

-18
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,3 @@ jobs:
3434
- run: dart pub get
3535
- run: dart format --output=none --set-exit-if-changed .
3636
- run: dart analyze --fatal-infos
37-
38-
test:
39-
runs-on: ${{ matrix.os }}
40-
strategy:
41-
matrix:
42-
package: [file]
43-
os: [ubuntu-latest, macos-latest, windows-latest]
44-
sdk: [stable, dev]
45-
46-
steps:
47-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
48-
- uses: dart-lang/setup-dart@e630b99d28a3b71860378cafdc2a067c71107f94
49-
with:
50-
sdk: ${{ matrix.sdk }}
51-
52-
- run: dart pub get
53-
54-
- run: dart pub run test -j1

0 commit comments

Comments
 (0)