Skip to content

refactor and use generic types #1

refactor and use generic types

refactor and use generic types #1

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
paths-ignore:
- "README.md"
tags-ignore:
- "*"
env:
GO_VERSION: "1.22.5"
GOFLAGS: -buildvcs=false
GOPROXY: https://proxy.golang.org,direct
jobs:
lint:
name: Run make lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- run: make lint
test:
name: Run make test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- run: make test