github-actions-golang
github-actions-golang copied to clipboard
GitHub Actions as CI for Go
I had the bad experience that this doesn't work on Windows: ```yaml - name: Run coverage run: go test -v -race -coverprofile=coverage.out -covermode=atomic ./... ``` Output: ``` no required module...
This is an awesome resource, thank you! I noticed you use `${{ hashFiles('**/go.sum') }}` as a cache key for the module cache. I am not sure that does what it...
I've found this repo very helpful, thank you! I've noticed that using the actions-cache as demonstrated in the repo doesn't result in tests being cached. I know on my local...