Skip to content

Commit 69c580b

Browse files
committed
wip: testing
1 parent b7e333e commit 69c580b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/test.yml

+14
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,24 @@ jobs:
2222
uses: ./forge/actions/discovery
2323
with:
2424
filters: |
25+
^build.*
2526
^check.*
2627
^test.*
28+
2729
check:
2830
uses: ./.github/workflows/run.yml
2931
needs: [discover]
3032
with:
3133
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^check.*']) }}
34+
35+
build:
36+
uses: ./.github/workflows/run.yml
37+
needs: [discover, check]
38+
with:
39+
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^build.*']) }}
40+
41+
test:
42+
uses: ./.github/workflows/run.yml
43+
needs: [discover, check, build]
44+
with:
45+
earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^test.*']) }}

0 commit comments

Comments
 (0)