Skip to content

remove usage of init and add golangci-lint to workflows #11

remove usage of init and add golangci-lint to workflows

remove usage of init and add golangci-lint to workflows #11

Workflow file for this run

name: Tests
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
go:
- "1.25"
- "1.24"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: make