Skip to content

Improve error handling #21

Improve error handling

Improve error handling #21

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@v4
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: |
go test -v -race ./...
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.54