Skip to content

fix: set clampLevel to 3 for debug logs #537

fix: set clampLevel to 3 for debug logs

fix: set clampLevel to 3 for debug logs #537

Workflow file for this run

name: Go
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: ^1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Style
run: make style
- name: Vet
run: make vet
- name: Test
run: make test
- name: Build
run: make build