Prepare release 2.8.0 #674
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 test and lint | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main, v2 ] | |
jobs: | |
test: | |
name: Test with latest golang | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Set up latest golang | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ^1.18 | |
- name: Test | |
run: go test -v -race ./... | |
test-old: | |
name: Test with 1.17 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Set up Go 1.17 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.17 | |
- name: Test | |
run: go test -v -race ./... | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.17 | |
- uses: actions/checkout@v4 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.50.1 |