Skip to content

Fix "non-constant format string in call to fmt.Fprintf (govet)" #54

Fix "non-constant format string in call to fmt.Fprintf (govet)"

Fix "non-constant format string in call to fmt.Fprintf (govet)" #54

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: [1.23]
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: -D errcheck
- name: Run test
run: |
go test -v ./...