ci: add Drone CI
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bruno BELANYI 2021-03-06 16:43:45 +00:00
parent ba0afdeff3
commit be86f4dbb1
1 changed files with 10 additions and 0 deletions

10
.drone.yml Normal file
View File

@ -0,0 +1,10 @@
---
kind: pipeline
type: exec
name: shellcheck
steps:
- name: shellcheck
commands:
- nix develop -c find -name '*.sh' -exec shellcheck '{}' +
...