forked from canonical/Bauer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
29 lines (25 loc) · 686 Bytes
/
Taskfile.yml
File metadata and controls
29 lines (25 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
version: "3"
tasks:
build:
desc: Build the Bauer binary
cmds:
- go build -o bauer cmd/bauer/main.go
test:
desc: Run all tests
cmds:
- go test --cover ./...
lint:
desc: Format code using gofmt
cmds:
- gofmt -w .
run:
desc: Run the bau tool locally with specified document ID
vars:
CREDS: "bau-test-creds.json"
DOC_ID: "13pde34a6x5sAfWf30lgVm2NjsOiUdN-F8XSpANzjBfw"
OUTPUT_DIR: "bauer-output"
MODEL: "gpt-5-mini-high"
cmds:
- go run cmd/bauer/main.go --doc-id "{{.DOC_ID}}" --credentials "{{.CREDS}}" --output-dir "{{.OUTPUT_DIR}}" --model "{{.MODEL}}"
# requires:
# vars: [DOC_ID]