file.go: return the correct error message from load() when the cache … #113
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: main | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Go | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: 1.24 | |
| id: go | |
| - name: Code checkout | |
| uses: actions/checkout@v1 | |
| - name: Test | |
| run: | | |
| go test -v ./... -coverprofile=coverage.txt -covermode=atomic | |
| go test -v ./... -race | |
| - name: Build | |
| run: | | |
| GOOS=linux go build | |
| GOOS=darwin go build | |
| GOOS=freebsd go build | |
| GOOS=windows go build | |
| GOARCH=386 go build | |
| - name: Publish coverage | |
| uses: codecov/codecov-action@v1.0.6 | |
| with: | |
| token: ${{secrets.CODECOV_TOKEN}} | |
| file: ./coverage.txt | |