updating requests data for normalized tool calls #27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 ./... |