Skip to content

[lore 7/7] OTel/slog audit + docs + release prep #23

[lore 7/7] OTel/slog audit + docs + release prep

[lore 7/7] OTel/slog audit + docs + release prep #23

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
name: test (go ${{ matrix.go }} / ${{ matrix.os }})
strategy:
fail-fast: false
matrix:
go: ["1.23", "1.24"]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
check-latest: true
- name: go mod download
run: go mod download
- name: go vet
run: go vet ./...
- name: go build
run: go build ./...
- name: go test
run: go test -race -count=1 ./...