fix(gitignore): catch compiled Go binaries in all subdirectories
Some checks failed
deploy / test (push) Failing after 1m56s
deploy / deploy-finance (push) Has been skipped

This commit is contained in:
Gonçalo Rodrigues 2026-06-26 23:29:40 +01:00
parent 2e0163e2b2
commit ee54f11641

5
.gitignore vendored
View File

@ -5,6 +5,7 @@
# node # node
node_modules node_modules
# go build artifacts # go build artifacts — ignore compiled binaries (files named main, no extension)
/main **/main
!**/main/
*.test *.test