Skip to content

Add more context to error logs #215

Add more context to error logs

Add more context to error logs #215

Workflow file for this run

name: Go Tests
on:
push:
branches:
- main
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.2
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...