Skip to content

Commit 97d9d85

Browse files
Test
1 parent d1d7c27 commit 97d9d85

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- '**'
1111

1212
jobs:
13-
checks:
13+
pre:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
@@ -21,12 +21,18 @@ jobs:
2121
if: ${{ matrix.sdk != '2.19.6' }}
2222
run: |
2323
./tool/delete_dart_2_only_files.sh
24-
- uses: Workiva/gha-dart-oss/.github/workflows/[email protected]
25-
with:
26-
additional-checks: |
27-
no_entrypoint_imports
28-
sdk: ${{ matrix.sdk }}
29-
format-check: ${{ matrix.sdk == '2.19.6' }}
24+
25+
checks:
26+
needs: pre
27+
strategy:
28+
matrix:
29+
sdk: ${{ steps.pre.strategy.matrix.sdk }}
30+
uses: Workiva/gha-dart-oss/.github/workflows/[email protected]
31+
with:
32+
additional-checks: |
33+
no_entrypoint_imports
34+
sdk: ${{ matrix.sdk }}
35+
format-check: ${{ matrix.sdk == '2.19.6' }}
3036

3137
# Run as a separate job outside the Dart SDK matrix below,
3238
# since we can only emit a single SBOM.
File renamed without changes.

0 commit comments

Comments
 (0)