Skip to content

log: switch to slog #322

log: switch to slog

log: switch to slog #322

Workflow file for this run

name: test
on:
push:
branches: ["main"]
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.23.x]
os: [ubuntu-latest]
fail-fast: false
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout repository
uses: actions/checkout@v4
- name: Test
run: go test ./...
env:
CGO_ENABLED: 0