kiss server monitoring tool with email alerts
go monitoring

ci: add spindle workflow

+24 -9
+24
.tangled/workflows/ci.yml
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["main"] 4 + - event: ["pull_request"] 5 + branch: ["main"] 6 + 7 + engine: "nixery" 8 + 9 + # using the default values 10 + clone: 11 + skip: false 12 + depth: 1 13 + submodules: false 14 + 15 + dependencies: 16 + nixpkgs: 17 + - go 18 + 19 + steps: 20 + - name: "Build servmon" 21 + command: "go build ." 22 + 23 + - name: "Run tests" 24 + command: "go test ./... -v"
-9
Makefile
··· 1 - #!/usr/bin/make -f 2 - 3 - PWD=$(shell pwd) 4 - 5 - build: 6 - go build -o servmon-bin . 7 - 8 - install: 9 - go install .