Skip to content

release: v0.0.33

release: v0.0.33 #87

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Install uv
uses: astral-sh/setup-uv@v9.0.0
- name: Build
run: go build ./...
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...