Skip to content

Remove whitespace

Remove whitespace #3

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
go:
- 1.x
- 1.24.x
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Checkout Repository
uses: actions/checkout@v4
- name: Run Tests
run: go test -race ./...