github-actions-golang icon indicating copy to clipboard operation
github-actions-golang copied to clipboard

GitHub Actions as CI for Go

Results 3 github-actions-golang issues
Sort by recently updated
recently updated
newest added

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...