Skip to content

updating requests data for normalized tool calls #27

updating requests data for normalized tool calls

updating requests data for normalized tool calls #27

Workflow file for this run

name: Linux
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install Go
uses: actions/setup-go@v6
with:
go-version: "stable"
- name: Install uv
# Used by TestRequestsAgainstTemplates to render the canonical
# HuggingFace Jinja2 reference output via scripts/render_python.py.
# Without uv on PATH that test will skip itself.
uses: astral-sh/setup-uv@v3
- name: Run api/service tests
timeout-minutes: 30
run: |
go test -v -count=1 ./...
- name: Run vet, linter, vuln, diff checks
run: |
go vet ./...
go tool staticcheck -checks=all ./...
go tool govulncheck ./...
go fix -diff ./...