Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22f15e8 commit e4251feCopy full SHA for e4251fe
1 file changed
.github/workflows/test.yml
@@ -126,7 +126,7 @@ jobs:
126
WHEEL=`realpath wheels/*.whl`
127
python -m pip install $WHEEL[all]
128
129
- zero_worker:
+ features:
130
runs-on: ubuntu-latest
131
steps:
132
- name: Checkout sources
@@ -140,5 +140,8 @@ jobs:
140
141
- uses: Swatinem/[email protected]
142
143
- - name: Build HyperQueue with the zero worker feature
144
- run: cargo build --features zero-worker
+ - name: Build HyperQueue with the zero worker mode
+ run: RUSTFLAGS="--cfg zero_worker" cargo build --workspace
145
+
146
+ - name: Build HyperQueue with all features enabled
147
+ run: cargo build --all-features --workspace
0 commit comments