mirror of
https://github.com/bahdotsh/wrkflw.git
synced 2026-02-24 03:49:45 +01:00
- Move test workflows to tests/workflows/ - Move GitLab CI fixtures to tests/fixtures/gitlab-ci/ - Move test scripts to tests/scripts/ - Move Podman testing docs to tests/ - Update paths in test scripts and documentation - Delete MANUAL_TEST_CHECKLIST.md as requested - Update tests/README.md to reflect new organization
31 lines
515 B
YAML
31 lines
515 B
YAML
name: Cyclic Dependencies
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
job-a:
|
|
runs-on: ubuntu-latest
|
|
needs: [job-c]
|
|
steps:
|
|
- name: Job A
|
|
run: echo "Job A"
|
|
|
|
job-b:
|
|
runs-on: ubuntu-latest
|
|
needs: [job-a]
|
|
steps:
|
|
- name: Job B
|
|
run: echo "Job B"
|
|
|
|
job-c:
|
|
runs-on: ubuntu-latest
|
|
needs: [job-b]
|
|
steps:
|
|
- name: Job C
|
|
run: echo "Job C"
|
|
|
|
reusable-job:
|
|
uses: octo-org/example-repo/.github/workflows/reusable.yml@main
|
|
needs: [job-a] |