Skip to content

Selectively log HTTP request fields #15

Selectively log HTTP request fields

Selectively log HTTP request fields #15

Workflow file for this run

name: Test
on:
- pull_request
jobs:
test:
strategy:
matrix:
go:
- '1.17.x'
- '1.18.x'
- '1.19.x'
- '1.20.x'
- '1.21.x'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Download Dependencies
run: go mod download
- name: Run Tests
run: |
make vendor
make test