Skip to content

Commit 528e7bf

Browse files
committed
Fix workflow
1 parent db1a40b commit 528e7bf

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757

5858
- name: Install dependencies
5959
shell: bash
60-
run: poetry install -E grpc-async
60+
run: poetry install -E all
6161

6262
- name: Download compiled test files
6363
shell: bash
@@ -69,7 +69,7 @@ jobs:
6969

7070
- name: Install dependencies with the Rust codec
7171
shell: bash
72-
run: poetry install -E grpc-async -E rust-codec
72+
run: poetry install -E all -E rust-codec
7373

7474
- name: Execute test suite with the Rust codec
7575
shell: bash

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ Repository = "https://github.com/betterproto/python-betterproto2"
2020
rust-codec = ["betterproto2-rust-codec"]
2121
grpc-sync = ["grpcio"]
2222
grpc-async = ["grpclib"]
23-
all = ["betterproto2-rust-codec", "grpclib", "grpcio"]
23+
24+
# betterproto2-rust-codec is not included because still experimental
25+
all = ["grpclib", "grpcio"]
2426

2527
[tool.poetry]
2628
packages = [

0 commit comments

Comments
 (0)