Skip to content

refactor: refactoring of code to meet all golangci-lint requirements #23

refactor: refactoring of code to meet all golangci-lint requirements

refactor: refactoring of code to meet all golangci-lint requirements #23

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23.2'
- name: Test
run: go test -v ./...
- name: Build
run: go build -v ./...