sample/.forgejo/workflows/demo.yml
Chris Thompson 41e4561324
All checks were successful
/ test (push) Successful in 2s
/ test2 (push) Successful in 2s
Ensure a second job can depend on the first
2025-05-22 17:02:58 -04:00

11 lines
182 B
YAML

on: [push]
jobs:
test:
runs-on: docker
steps:
- run: echo All Good, REALLY
test2:
needs: test
runs-on: docker
steps:
- run: echo All Good, REALLY