Skip to content

Commit 9ab0507

Browse files
committed
Fix feature flag in CI
1 parent 1f69bc4 commit 9ab0507

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ jobs:
207207
- "-Ctarget-feature=+avx512" # AVX-512 uses packed bit masks, so enable it to test more code paths
208208
features:
209209
- ""
210-
- "--feature std"
211-
- "--feature const_evaluatable_checked"
212-
- "--feature std --feature const_evaluatable_checked"
210+
- "--features std"
211+
- "--features const_evaluatable_checked"
212+
- "--features std --features const_evaluatable_checked"
213213

214214
steps:
215215
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)