birthdaybot/.gitlab-ci.yml
2023-06-30 00:33:06 +02:00

16 lines
245 B
YAML

---
stages:
- format
- test
check-fmt:
stage: format
image: nixos/nix:latest
script:
- nix-shell --run "make fmt && git diff --quiet"
run-tests:
stage: test
image: nixos/nix:latest
script:
- nix-shell --run "make test"