Skip to content

fix: Minor tewak for -dev releases #40

fix: Minor tewak for -dev releases

fix: Minor tewak for -dev releases #40

Workflow file for this run

# CI workflow - runs on PRs and pushes
name: CI
on:
push:
branches:
- main
- develop
- 'feature/**'
pull_request:
branches:
- main
- develop
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
cache: true
- name: Download dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race ./...
lint:
name: Lint
runs-on: ubuntu-latest
# Lint is non-blocking until golangci-lint supports Go 1.25
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.61.0
args: --timeout=5m
# Note: Using v1.61.0 as it was validated with Go 1.23. Upgrade when newer
# versions fully support Go 1.25+