Files
Test/.drone.yml
Chatchai J c000ec4680
All checks were successful
continuous-integration/drone/push Build is passing
drone test #1
2022-12-28 06:46:57 +07:00

17 lines
166 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: build
image: gcc
commands:
- make
- name: run
image: bash
commands:
- echo HELLO WORLD
...