18 lines
246 B
YAML
18 lines
246 B
YAML
---
|
|
stages:
|
|
- format
|
|
- test
|
|
|
|
check-fmt:
|
|
stage: format
|
|
image: nixos/nix:latest
|
|
script:
|
|
- nix-shell
|
|
- make fmt
|
|
- git diff --quiet
|
|
|
|
run-tests:
|
|
stage: test
|
|
image: nixos/nix:latest
|
|
script:
|
|
- nix-shell --run "make test"
|