diff options
author | Jesús <heckyel@hyperbola.info> | 2022-05-24 06:48:37 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-05-24 06:48:37 +0800 |
commit | 7c908d5f68f0f6cc81b9bd007816c14897990f49 (patch) | |
tree | d7704ff2f6845e87ace8a670f3bbb7477577b23b | |
parent | 7db5e74226345f70286f590c29e3683893630dfa (diff) | |
download | hyperfi-7c908d5f68f0f6cc81b9bd007816c14897990f49.tar.lz hyperfi-7c908d5f68f0f6cc81b9bd007816c14897990f49.tar.xz hyperfi-7c908d5f68f0f6cc81b9bd007816c14897990f49.zip |
Add drone CI/CD file
-rw-r--r-- | .drone.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..f5be85a --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +kind: pipeline +name: default + +steps: +- name: test + image: debian:bullseye + commands: + - apt update -y + - apt install -y shellcheck + - shellcheck hyperfi |