abacus/.drone.yml
Bruno BELANYI fa092f8876
Some checks failed
continuous-integration/drone/push Build is failing
ci: add Drone CI
2021-08-31 20:38:18 +02:00

28 lines
438 B
YAML

---
kind: pipeline
type: exec
name: abacus checks
steps:
- name: flake check
commands:
- nix flake check
- name: notifiy
commands:
- nix run github:ambroisie/matrix-notifier
environment:
ADDRESS:
from_secret: matrix_homeserver
ROOM:
from_secret: matrix_roomid
USER:
from_secret: matrix_username
PASS:
from_secret: matrix_password
when:
status:
- failure
- success
...