We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7e333e commit 69c580bCopy full SHA for 69c580b
.github/workflows/test.yml
@@ -22,10 +22,24 @@ jobs:
22
uses: ./forge/actions/discovery
23
with:
24
filters: |
25
+ ^build.*
26
^check.*
27
^test.*
28
+
29
check:
30
uses: ./.github/workflows/run.yml
31
needs: [discover]
32
33
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
43
+ needs: [discover, check, build]
44
45
+ earthfiles: ${{ toJson(fromJson(needs.discover.outputs.result)['^test.*']) }}
0 commit comments