@@ -57,7 +57,7 @@ The output of the check phase may looks like the following:
5757
5858``` json
5959{
60- "/home/work/test" : [" check-test1" , " check-test2" , " check-test3" ],
60+ "/home/work/test" : [" check-test1" , " check-test2" , " check-test3" , " check-test-test4 " ],
6161 "/home/work/test2" : [" check" ]
6262}
6363```
@@ -71,7 +71,8 @@ The output of the check phase may looks like the following:
7171This list of ` path ` is fed into a [ matrix job] ( https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs ) that
7272multiplexes executing the filtered targets from each of the discovered ` Earthfile ` s.
7373The filtered targets will be retrieved from the map according to which Earthfile is currently running.
74- For example, from the above example, running ` /home/work/test ` will run the targets ` check-test1 ` , ` check-test2 ` , and ` check-test3 ` .
74+ For example, from the above example, running ` /home/work/test ` will run the targets ` check-test1 ` , ` check-test2 ` , ` check-test3 ` and
75+ ` check-test-test4 ` .
7576
7677Executing each discovered Earthfile in parallel will maximize network throughput
7778and create a more easily digestible view of the CI status.
@@ -183,7 +184,7 @@ The examples are provided below:
183184
184185``` json
185186{
186- "/home/work/test" : [" check-test1" , " check-test2" , " check-test3" ],
187+ "/home/work/test" : [" check-test1" , " check-test2" , " check-test3" , " check-test-test4 " ],
187188 "/home/work/test2" : [" check-test1" ]
188189}
189190```
0 commit comments