Skip to content

swiss table added.

swiss table added. #8

Workflow file for this run

name: CI Workflow (PR)
on:
pull_request:
branches:
- main
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version: '1.24.2'
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
args: |
-v ./...
- name: Run tests
run: go test -race -v ./...