Files
Test/.drone.yml
Chatchai J 6c500af426
Some checks failed
continuous-integration/drone/push Build is failing
try to fix drone yml
2022-12-28 07:38:47 +07:00

17 lines
185 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: gcc
commands:
- make
- name: run
image: bash
commands:
- if [ -f ./hello ]; then ./hello; fi
...