Skip to content

chore: release v1.6.0 #130

chore: release v1.6.0

chore: release v1.6.0 #130

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Download dependencies
run: go mod download
- name: Run tests
run: make test
- name: Build
run: make build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Run go vet
run: make vet
- name: Run go fmt check
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "Go files must be formatted with gofmt"
gofmt -l .
exit 1
fi