Skip to content

Add contributor documentation and GitHub issue templates #22

Add contributor documentation and GitHub issue templates

Add contributor documentation and GitHub issue templates #22

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.26"
cache: true
- name: Run unit tests
run: go test ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest