Skip to content

Merge branch 'aka/golangci' #43

Merge branch 'aka/golangci'

Merge branch 'aka/golangci' #43

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
ci:
strategy:
fail-fast: false
matrix:
go-version: ['stable', 'oldstable']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Verify dependencies
run: go mod verify
- name: Build
run: go build -v ./...
- name: Run tests
run: go test -race -vet=off ./...