Skip to content

Use slog from the standard library #21

Use slog from the standard library

Use slog from the standard library #21

Workflow file for this run

%YAML 1.1
---
name: Go
'on':
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- '1.21'
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
cache: true
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -race -v ./...