mod: bump golang.org/x/sync from 0.7.0 to 0.8.0 #177
Workflow file for this run
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
name: Go | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- '.golangci.yml' | |
- '.github/workflows/go.yml' | |
pull_request: | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- '.golangci.yml' | |
- '.github/workflows/go.yml' | |
env: | |
GOPROXY: "https://proxy.golang.org" | |
jobs: | |
lint: | |
name: Lint | |
concurrency: | |
group: ${{ github.workflow }}-lint-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.23.x | |
- name: Check Go module tidiness | |
shell: bash | |
run: | | |
go mod tidy | |
STATUS=$(git status --porcelain) | |
if [ ! -z "$STATUS" ]; then | |
echo "Unstaged files:" | |
echo $STATUS | |
echo "Run 'go mod tidy' and commit them" | |
exit 1 | |
fi | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
args: --timeout=30m | |
test: | |
name: Test | |
strategy: | |
matrix: | |
go-version: [ 1.22.x, 1.23.x ] | |
platform: [ ubuntu-latest, macos-latest, windows-latest ] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Run tests with coverage | |
continue-on-error: true | |
run: go test -shuffle=on -v -race -coverprofile=coverage -covermode=atomic -json ./... > test-report.json | |
env: | |
PGPORT: 5432 | |
PGHOST: localhost | |
PGUSER: postgres | |
PGPASSWORD: postgres | |
PGDATABASE: postgres | |
PGSSLMODE: disable | |
REDIS_HOST: localhost | |
REDIS_PORT: 6379 | |
- name: Analyze test report | |
run: | | |
go install github.com/mfridman/tparse@latest | |
tparse -all -file=test-report.json |