Skip to content

Added match request by header and no body #12

Added match request by header and no body

Added match request by header and no body #12

Workflow file for this run

name: Lint and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.64.7
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...