Skip to content

feat: redact sensitive headers and body content in debug logs (#217) #9

feat: redact sensitive headers and body content in debug logs (#217)

feat: redact sensitive headers and body content in debug logs (#217) #9

Workflow file for this run

name: Style
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
style:
if: github.event_name == 'pull_request' || github.event_name == 'push'
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
cache: false
go-version-file: go.mod
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/.cache/golangci-lint
~/go/pkg/mod
~/go/bin
key: code-style-check-${{ hashFiles('**/go.mod', '**/go.sum', '**/Makefile') }}
- name: Run code style check
run: make check