ci: drone: test exec runner

This commit is contained in:
Bruno BELANYI 2021-02-16 14:54:59 +01:00
commit d1c35eb952

14
.drone.yml Normal file
View file

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