···4141# Don't ignore this file itself, or other specific dotfiles
4242!.gitignore
4343!.github/
4444+!.tangled/
4445!.golangci.yaml
45464647# Don't commit your (default location) creds
+16
.tangled/workflows/build_and_test.yml
···11+when:
22+ - event: push
33+ branch: ["main", "ci"]
44+55+dependencies:
66+ nixpkgs:
77+ - gcc
88+ - go
99+1010+steps:
1111+ - name: build
1212+ command: make build
1313+ - name: test
1414+ command: make test
1515+1616+