Skip to content

Move session logs to DEBUG and add LOGGING_LEVEL env var #222

Move session logs to DEBUG and add LOGGING_LEVEL env var

Move session logs to DEBUG and add LOGGING_LEVEL env var #222

Workflow file for this run

name: Go Test
on:
push:
branches:
- main
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
pull_request:
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build
run: go build -v ./...
- name: Test
uses: robherley/go-test-action@v1