Skip to content

Enable golangci-lint and fix issues #333

Enable golangci-lint and fix issues

Enable golangci-lint and fix issues #333

Workflow file for this run

name: Unit Testing
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version:
- "1.22"
steps:
- name: Checkout source
uses: actions/checkout@v5
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Run linters
run: |
make lint
- name: Run unit tests
run: |
make unit