···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
+18
.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+1313+ - name: test
1414+ command: |
1515+ ls
1616+ make test
1717+1818+