diff options
Diffstat (limited to 'pkg/jobparser/testdata/has_needs.in.yaml')
-rw-r--r-- | pkg/jobparser/testdata/has_needs.in.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pkg/jobparser/testdata/has_needs.in.yaml b/pkg/jobparser/testdata/has_needs.in.yaml new file mode 100644 index 0000000..a7d1f9b --- /dev/null +++ b/pkg/jobparser/testdata/has_needs.in.yaml @@ -0,0 +1,16 @@ +name: test +jobs: + job1: + runs-on: linux + steps: + - run: uname -a + job2: + runs-on: linux + steps: + - run: uname -a + needs: job1 + job3: + runs-on: linux + steps: + - run: uname -a + needs: [job1, job2] |