We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c06edd commit 85a2ab1Copy full SHA for 85a2ab1
1 file changed
.github/workflows/ci.yml
@@ -33,6 +33,13 @@ jobs:
33
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
34
with:
35
python-version: ${{ matrix.python }}
36
+ # protoc is required to build temporalio from the sdk-python git source
37
+ # (see [tool.uv.sources] in pyproject.toml). Drop this step once the SDK
38
+ # ships a release that includes the LangGraph plugin.
39
+ - uses: arduino/setup-protoc@c65c819552d16ad3c9b72d9dfd5ba5237b9c906b # v3
40
+ with:
41
+ version: "23.x"
42
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
43
- run: uv tool install poethepoet
44
- run: uv sync --group=dsl --group=encryption --group=trio-async
45
- run: poe lint
0 commit comments