Skip to content

Commit 705c207

Browse files
committedApr 3, 2023
Add github action testing for const-generics feature.
1 parent a7ce809 commit 705c207

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
 

‎.github/workflows/test.yml

+10
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,21 @@ jobs:
4242
with:
4343
command: test
4444
args: --no-default-features --features std
45+
- name: std const-generics
46+
uses: actions-rs/cargo@v1
47+
with:
48+
command: test
49+
args: --no-default-features --features "std const-generics"
4550
- name: std i128
4651
uses: actions-rs/cargo@v1
4752
with:
4853
command: test
4954
args: --no-default-features --features "std i128"
55+
- name: std i128 const-generics
56+
uses: actions-rs/cargo@v1
57+
with:
58+
command: test
59+
args: --no-default-features --features "std i128 const-generics"
5060
- name: no std build
5161
uses: actions-rs/cargo@v1
5262
with:

0 commit comments

Comments
 (0)
Please sign in to comment.