Skip to content

fix: CI

fix: CI #8

Workflow file for this run

name: Tests
on:
push:
branches:
- '*'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: '1.26'
- name: Run version
run: go run main.go --version
- name: Run tests
run: go test -v -race ./...