From 69519c45a67afd62a8723fde78c12a868501f910 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 8 Feb 2021 17:39:46 +0000 Subject: [PATCH] ci: add Drone CI --- .drone.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..7ad1c78 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,24 @@ +kind: pipeline +name: check config + +steps: + - name: format check + image: nixos/nix + commands: + - nix-shell -p nixpkgs-fmt --run 'nixpkgs-fmt . --check' + + - name: notify + image: plugins/matrix + settings: + homeserver: + from_secret: matrix_homeserver + roomid: + from_secret: matrix_roomid + username: + from_secret: matrix_username + password: + from_secret: matrix_password + trigger: + status: + - failure + - success