Skip to content

Request logging & request/response body logging support #2

Request logging & request/response body logging support

Request logging & request/response body logging support #2

Workflow file for this run

name: Tests
on:
pull_request:
jobs:
test:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
# support two latest major versions of Go, following the Go security policy
# in which these versions get security updates. See https://golang.org/security
go-version: [1.20.x, 1.21.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: test
run: go test ./...