···2828# Don't ignore this file itself, or other specific dotfiles
2929!.gitignore
3030!.github/
3131+!.tangled/
3132!.golangci.yaml
3233!.goreleaser.yaml
+21
.tangled/workflows/build-and-test.yml
···11+when:
22+ - event: ["push", "pull_request"]
33+ branch: ["main", "ci"]
44+55+engine: nixery
66+77+dependencies:
88+ nixpkgs:
99+ - go
1010+ - gcc
1111+1212+environment:
1313+ CGO_ENABLED: 1
1414+1515+steps:
1616+ - name: build
1717+ command: |
1818+ make build
1919+2020+ - name: test
2121+ command: make test