Add more error logs and update goproxy dependency (#291) #996
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
| on: [push, pull_request] | |
| name: Test | |
| permissions: | |
| contents: read | |
| # Workaround for coveralls error "Can't add a job to a build that is already closed" | |
| # See https://github.com/lemurheavy/coveralls-public/issues/1716 | |
| env: | |
| COVERALLS_SERVICE_NUMBER: ${{ github.run_id }}-${{ github.run_attempt }} | |
| COVERALLS_PARALLEL: true | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: ['1.21', '1.22', '1.23'] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Setup env | |
| run: | | |
| echo "{GOFLAGS}={-mod=vendor}" >> $GITHUB_ENV | |
| - name: Vet | |
| run: | | |
| go vet -v ./... | |
| - name: Test | |
| run: | | |
| go mod verify | |
| go test -race -v -timeout 2m -failfast -covermode atomic -coverprofile=.covprofile ./... -tags=nointegration | |
| # Run integration tests hermetically to avoid nondeterministic races on environment variables | |
| go test -race -v -timeout 2m -failfast ./cmd/... -run TestSmokescreenIntegration | |
| go test -race -v -timeout 2m -failfast ./cmd/... -run TestInvalidUpstreamProxyConfiguratedFromEnv | |
| go test -race -v -timeout 2m -failfast ./cmd/... -run TestInvalidUpstreamProxyConfiguration | |
| go test -race -v -timeout 2m -failfast ./cmd/... -run TestClientHalfCloseConnection | |
| - name: Install goveralls | |
| run: go install github.com/mattn/goveralls@latest | |
| - name: Send coverage | |
| env: | |
| COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: goveralls -coverprofile=.covprofile -service=github | |
| finish: | |
| needs: test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| - name: Install goveralls | |
| run: go install github.com/mattn/goveralls@latest | |
| - name: Close goveralls parallel build | |
| env: | |
| COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: goveralls -coverprofile=.covprofile -service=github -parallel-finish=true |