-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
53 lines (41 loc) · 1.08 KB
/
Taskfile.yml
File metadata and controls
53 lines (41 loc) · 1.08 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Code generated by ADL CLI v0.22.1. DO NOT EDIT.
# This file was automatically generated from an ADL (Agent Definition Language) specification.
# Manual changes to this file may be overwritten during regeneration.
version: '3'
vars:
APP_NAME: browser-agent
VERSION: 0.2.1
tasks:
validate:
desc: Validate ADL
cmd: adl validate agent.yaml
generate:
desc: Generate code from ADL
cmd: adl generate --file agent.yaml --output . --overwrite --ci --cd --ai
build:
desc: Build the application
cmd: go build -o bin/{{.APP_NAME}} .
run:
desc: Run the application in development mode
cmd: go run .
env:
A2A_DEBUG: true
A2A_SERVER_PORT: 8080
test:
desc: Run tests
cmd: go test -v ./...
test:cover:
desc: Run tests with coverage
cmd: go test -v -cover ./...
fmt:
desc: Format code
cmd: go fmt ./...
lint:
desc: Run linter
cmd: golangci-lint run
clean:
desc: Clean build artifacts
cmd: rm -rf bin/
docker:build:
desc: Build Docker image
cmd: docker build -t {{.APP_NAME}}:{{.VERSION}} .