Skip to content

fix Makefile

fix Makefile #3

Workflow file for this run

name: CI
on:
push:
branches:
- "main"
jobs:
build:
name: Build, lint and test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Go Environment
uses: actions/setup-go@v5.0.2
with:
go-version: 1.22
cache: false # managed by golangci-lint
- name: Download Dependencies
run: go mod download -x
- name: Lint
uses: golangci/golangci-lint-action@v6.1.1
with:
version: latest
- name: Test
run: go test -v -race ./...