ntfy-alertmanager/.build.yml

23 lines
472 B
YAML
Raw Normal View History

2022-10-13 14:16:41 +02:00
image: archlinux
packages:
- go
- revive
- staticcheck
sources:
- https://git.xenrox.net/~xenrox/ntfy-alertmanager
tasks:
- test: |
cd ntfy-alertmanager
go test -v ./...
- lint: |
cd ntfy-alertmanager
go vet ./...
staticcheck ./...
revive ./...
- build: |
cd ntfy-alertmanager
go build
- gofmt: |
cd ntfy-alertmanager
test -z $(gofmt -l .)