Skip to content

Bump github.com/go-pogo/errors from 0.10.0 to 0.11.0 #50

Bump github.com/go-pogo/errors from 0.10.0 to 0.11.0

Bump github.com/go-pogo/errors from 0.10.0 to 0.11.0 #50

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
- '.run/**'
- '.editorconfig'
- '*ignore'
- 'Taskfile.*'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
- '.run/**'
- '.editorconfig'
- '*ignore'
- 'Taskfile.*'
jobs:
test:
strategy:
matrix:
go-version: [ 'stable', 'oldstable', 1.20.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 ./...