Skip to content

Only run tests once #75

Only run tests once

Only run tests once #75

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24.2
cache: true
- name: Run tests with race detection
run: go test -race ./...