mirror of
https://github.com/go-gitea/gitea.git
synced 2026-03-02 02:21:03 +01:00
The jobparser sub package in act is only used by Gitea. Move it to Gitea to make it more easier to maintain. --------- Co-authored-by: Christopher Homberger <christopher.homberger@web.de>
26 lines
324 B
YAML
26 lines
324 B
YAML
name: test
|
|
jobs:
|
|
job1:
|
|
name: job1
|
|
runs-on: linux
|
|
steps:
|
|
- run: uname -a
|
|
---
|
|
name: test
|
|
jobs:
|
|
job2:
|
|
name: job2
|
|
needs: job1
|
|
runs-on: linux
|
|
steps:
|
|
- run: uname -a
|
|
---
|
|
name: test
|
|
jobs:
|
|
job3:
|
|
name: job3
|
|
needs: [job1, job2]
|
|
runs-on: linux
|
|
steps:
|
|
- run: uname -a
|