test-drone/.drone.yml
Bruno BELANYI 8708719439
All checks were successful
continuous-integration/drone/push Build is passing
ci: drone: replace nix-shell with nix-run
2021-06-12 17:22:32 +02:00

18 lines
214 B
YAML

---
kind: pipeline
type: docker
name: exec docker test
steps:
- name: test
image: hello-world
---
kind: pipeline
type: exec
name: exec runner test
steps:
- name: test
commands:
- nix run 'nixpkgs#hello'
...