Skip to content

feat: wire up all remaining API operations (Commits 2-4) #99

feat: wire up all remaining API operations (Commits 2-4)

feat: wire up all remaining API operations (Commits 2-4) #99

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "1.25"
- name: Install oapi-codegen
run: go install github.com/oapi-codegen/oapi-codegen-exp/experimental/cmd/oapi-codegen@latest
- name: Generate API clients
run: make api-gen
- run: go test ./...
- run: go vet ./...
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: "1.25"
- name: Install oapi-codegen
run: go install github.com/oapi-codegen/oapi-codegen-exp/experimental/cmd/oapi-codegen@latest
- name: Generate API clients
run: make api-gen
- run: go build -o /dev/null ./cmd/clickup