Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: arduino/setup-protoc@v2
- name: 'Setup jq'
uses: dcarbone/install-jq-action@v2
- uses: astral-sh/setup-uv@v7
- run: make ci-build
- name: Fail if the repo is dirty
run: |
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
/.gen
/.vscode
/.stamp
*~
*~
__pycache__/
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SHELL=bash -o pipefail

$(VERBOSE).SILENT:
############################# Main targets #############################
ci-build: install proto http-api-docs
ci-build: install proto http-api-docs test

# Install dependencies.
install: grpc-install api-linter-install buf-install
Expand Down Expand Up @@ -73,6 +73,10 @@ http-api-docs:
yq e -i '(.paths[] | .[] | .operationId) |= sub("\w+_(.*)", "$$1")' $(OAPI_OUT)/openapi.yaml
mv -f $(OAPI_OUT)/openapi.yaml $(OAPI_OUT)/openapiv3.yaml

test:
./test-http-api-ambiguity


##### Plugins & tools #####
grpc-install:
@printf $(COLOR) "Install/update protoc and plugins..."
Expand Down Expand Up @@ -113,7 +117,7 @@ buf-lint: $(STAMPDIR)/buf-mod-prune
(cd $(PROTO_ROOT) && buf lint)

buf-breaking:
@printf $(COLOR) "Run buf breaking changes check against master branch..."
@printf $(COLOR) "Run buf breaking changes check against master branch..."
@(cd $(PROTO_ROOT) && buf breaking --against 'https://github.com/temporalio/api.git#branch=master')

##### Clean #####
Expand Down
2,422 changes: 1,867 additions & 555 deletions openapi/openapiv2.json

Large diffs are not rendered by default.

Loading
Loading