Skip to content

Commit 9b86dc0

Browse files
committed
Fix all_features var
1 parent f14ee61 commit 9b86dc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
uses: actions-rs/cargo@v1
4444
with:
4545
command: clippy
46-
args: --tests --features $all_features
46+
args: --tests --features ${{ env.all_features }}
4747

4848
- name: Test (default features)
4949
uses: actions-rs/cargo@v1
@@ -75,7 +75,7 @@ jobs:
7575
uses: actions-rs/cargo@v1
7676
with:
7777
command: test
78-
args: --features $all_features
78+
args: --features ${{ env.all_features }}
7979

8080
env:
8181
all_features: "bytemuck,rand,randtest,serde,schemars,proptest,rkyv,speedy"

0 commit comments

Comments
 (0)