Skip to content

fix: safer calls to .String() with panic recovery #18

fix: safer calls to .String() with panic recovery

fix: safer calls to .String() with panic recovery #18

Workflow file for this run

name: Go Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Install dependencies
run: go mod tidy
- name: Check code modernization
run: make modernize-check
- name: Run tests
run: go test ./... -v