This repository has been archived on 2025-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
drone-runner-podman/engine/compiler/testdata/graph.yml
2023-10-04 23:19:30 -05:00

16 lines
183 B
YAML

kind: pipeline
type: podman
name: default
steps:
- name: build
image: golang
commands:
- go build
- name: test
image: golang
commands:
- go test
depends_on: [ build ]