test-drone/.drone.yml

18 lines
214 B
YAML
Raw Normal View History

2021-02-16 14:57:28 +01:00
---
kind: pipeline
type: docker
name: exec docker test
steps:
- name: test
image: hello-world
2021-02-16 14:54:59 +01:00
---
kind: pipeline
type: exec
name: exec runner test
steps:
- name: test
commands:
- nix run 'nixpkgs#hello'
2021-02-16 14:57:28 +01:00
...