Skip to content

comments added.

comments added. #6

Workflow file for this run

name: CI Workflow (Push)
on:
push:
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 ./...