Skip to content
This repository was archived by the owner on Mar 24, 2026. It is now read-only.

docs: mark project as completed and remove future roadmap steps #3

docs: mark project as completed and remove future roadmap steps

docs: mark project as completed and remove future roadmap steps #3

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test and Build
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.25.x'
cache: true
- name: Install dependencies
run: go mod download
- name: Verify dependencies
run: go mod verify
- name: Run vet
run: go vet ./...
- name: Run tests
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Build
run: go build -v -o toolkit ./cmd/toolkit