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

View file

@ -6,11 +6,5 @@ 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 '{}' +
- nix develop -c find -name '*.sh' -exec shellcheck '{}' +
...