Skip to content

Debug method accepts multiple info to dump #99

Debug method accepts multiple info to dump

Debug method accepts multiple info to dump #99

Workflow file for this run

name: main
on:
push:
branches:
- '*'
tags-ignore:
- '*'
paths-ignore:
- '**/*.md'
- '**/.gitignore'
pull_request:
paths-ignore:
- '**/*.md'
- '**/.gitignore'
jobs:
build:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
go: ["1.21", "1.22"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup go${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Ensure go.mod is already tidied
run: go mod tidy && git diff -s --exit-code go.sum
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test with the Go CLI
run: go test -v ./... -shuffle=on -timeout=3m -cover