abacus/.drone.yml
Bruno BELANYI 3e5133da1a
All checks were successful
continuous-integration/drone/push Build is passing
ci: add package check phase
This takes care of launching the test suite.
2021-10-12 15:44:21 +02:00

32 lines
487 B
YAML

---
kind: pipeline
type: exec
name: abacus checks
steps:
- name: flake check
commands:
- nix flake check
- name: package check
commands:
- nix build
- 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
...