This repository has been archived by the owner on Jan 27, 2025. It is now read-only.
Sync with master (again) [skip ci] #34
This file contains 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 | |
# 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@v4 | |
- uses: actions/setup-go@v5 | |
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@v4 | |
- uses: actions/setup-go@v5 | |
- 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 |