Compare commits

...

1 commit

Author SHA1 Message Date
Bruno BELANYI be86f4dbb1 ci: add Drone CI
All checks were successful
continuous-integration/drone/push Build is passing
2021-03-06 16:46:36 +00:00

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 '{}' +
...