Fix CI workflow: checkout before setup-go for proper caching #102
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: build | |
| on: | |
| push: | |
| branches: | |
| tags: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: set up go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.24" | |
| id: go | |
| - name: build and test | |
| run: | | |
| go get -v | |
| # run tests for all packages except examples | |
| go test $(go list ./... | grep -v /examples/) -timeout=60s -race -covermode=atomic -coverprofile=$GITHUB_WORKSPACE/profile.cov_tmp | |
| cat $GITHUB_WORKSPACE/profile.cov_tmp | grep -v "_mock.go" > $GITHUB_WORKSPACE/profile.cov | |
| go build -race | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v7 | |
| with: | |
| version: v2.6 | |
| - name: install goveralls | |
| run: | | |
| go install github.com/mattn/goveralls@latest | |
| - name: submit coverage | |
| run: $(go env GOPATH)/bin/goveralls -service="github" -coverprofile=$GITHUB_WORKSPACE/profile.cov | |
| env: | |
| COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} |