feat: wire up all remaining API operations (Commits 2-4) #99
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: 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 |