···2828# Don't ignore this file itself, or other specific dotfiles
2929!.gitignore
3030!.github/
3131+!.tangled/
3132!.golangci.yaml
3233!.goreleaser.yaml
+22
.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+ - gnumake
1212+1313+environment:
1414+ CGO_ENABLED: 1
1515+1616+steps:
1717+ - name: build
1818+ command: |
1919+ make build
2020+2121+ - name: test
2222+ command: make test