···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
+17
.tangled/workflows/build_and_test.yml
···11+when:
22+ - event: push
33+ branch: ["main", "ci"]
44+55+dependencies:
66+ nixpkgs:
77+ - gcc
88+ - gnumake
99+ - go
1010+1111+steps:
1212+ - name: build
1313+ command: make build
1414+ - name: test
1515+ command: make test
1616+1717+