Skip to content

sloghandler: unnamed groups should be inlined #435

sloghandler: unnamed groups should be inlined

sloghandler: unnamed groups should be inlined #435

Workflow file for this run

name: Run tests
on: [ push, pull_request ]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
version: [ '1.18', '1.19', '1.20', '1.21.0-rc.4' ]
platform: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: ${{ matrix.version }}
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race ./...