Skip to content

Fixed bug for release with new golang version #7

Fixed bug for release with new golang version

Fixed bug for release with new golang version #7

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 1.25
uses: actions/setup-go@v6
with:
go-version: '1.25'
- name: Tidy modules
run: go mod tidy
- name: Run tests with coverage (100% enforced)
run: make test