Compare commits

...

1 commit

Author SHA1 Message Date
Bruno BELANYI 6d7934c661 ci: add Drone CI
Some checks failed
continuous-integration/drone/push Build is failing
2021-03-06 16:43:45 +00:00

16
.drone.yml Normal file
View file

@ -0,0 +1,16 @@
---
kind: pipeline
type: exec
name: shellcheck
steps:
- name: shellcheck
commands:
- >
nix develop -c
find
# Ignore `git` related files
-path ./.git -prune
# Check executables, assume they are scripts
-o -type f -executable -exec shellcheck '{}' +
...