Skip to content

v0.6.9

v0.6.9 #30

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: Test and Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23' # Align with go.mod if possible, or use stable
check-latest: true
- name: Lint
run: make lint
- name: Test
run: make test