Skip to content

chore(ci): fix a bug in the post-release action (#158) #231

chore(ci): fix a bug in the post-release action (#158)

chore(ci): fix a bug in the post-release action (#158) #231

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
run_suite:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 1.19.x, 1.20.x, 1.21.x]
name: Go ${{ matrix.go-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- run: go mod download
- run: go test -timeout 10m -v -race ./...
- run: go vet ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3