Skip to content

fix: improve alignment handling, enhance test coverage, and fix minor… #17

fix: improve alignment handling, enhance test coverage, and fix minor…

fix: improve alignment handling, enhance test coverage, and fix minor… #17

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Install dependencies
run: |
go mod download
go mod verify
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Run tests
run: go test -race -cover -v ./...
- name: Run benchmarks
run: go test -bench=. ./...