test-drone/.drone.yml

14 lines
166 B
YAML

---
kind: pipeline
type: exec
name: exec-runner-test
platform:
os: linux
arch: amd64
steps:
- name: test
commands:
- nix shell 'nixpkgs#hello' -c hello
...