Skip to content

fix: linter

fix: linter #37

Workflow file for this run

name: Linter
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["oldstable", "stable"]
env:
VERBOSE: 1
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Apply Linter
run: make lint