Skip to content

Upgrade to v5.0.0-preview5 #137

Upgrade to v5.0.0-preview5

Upgrade to v5.0.0-preview5 #137

Workflow file for this run

name: Test
on:
push:
branches:
- "**"
tags-ignore:
- "v*.*.*"
pull_request:
branches:
- "**"
jobs:
tests:
name: Unit and integrations tests
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.21"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: |
go test -v -race -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... ./...
- if: ${{ matrix.go == '1.21' }}
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.txt
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.21"
cache: false
- name: Run lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55
args: --timeout 5m