Skip to content

Bump github.com/go-pogo/errors from 0.8.0 to 0.9.0 #37

Bump github.com/go-pogo/errors from 0.8.0 to 0.9.0

Bump github.com/go-pogo/errors from 0.8.0 to 0.9.0 #37

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
go-version: ['stable', 'oldstable', 1.19.x, 1.18.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Get dependencies
run: go mod download
- name: Run tests
run: go test -race -v -count=1 ./...