blob: 16fb1bd04bcb8e420d1493d4cb672cd7fe678c1b (
plain) (
tree)
|
|
when:
- event: push
branch: main
steps:
- name: build
image: debian
commands:
- echo "This is the build step"
- echo "binary-data-123" > executable
- name: a-test-step
image: golang:1.16
commands:
- echo "Testing ..."
- ./executable
|