Skip to content

feat: agent.yaml parser, payload renderer, and go.work workspace (#46) #75

feat: agent.yaml parser, payload renderer, and go.work workspace (#46)

feat: agent.yaml parser, payload renderer, and go.work workspace (#46) #75

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: go vet ./...
- run: CGO_ENABLED=0 go test ./...
- name: Test launcher module
run: cd sandbox/launcher && go vet ./... && go test ./...
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v8