17 lines
273 B
YAML
17 lines
273 B
YAML
|
when:
|
||
|
- event: push
|
||
|
branch: main
|
||
|
|
||
|
steps:
|
||
|
- name: build
|
||
|
image: alpine
|
||
|
commands:
|
||
|
- echo "This is the build step"
|
||
|
- echo "echo Foo" > executable
|
||
|
- name: a-test-step
|
||
|
image: alpine
|
||
|
commands:
|
||
|
- echo "Testing ..."
|
||
|
- ./executable
|
||
|
|