10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e05cc1 commit e3ed0feCopy full SHA for e3ed0fe
.github/workflows/rust.yml
@@ -34,6 +34,6 @@ jobs:
34
- name: Package
35
run: cargo package
36
- name: Test package
37
- run: cd target/package/unicode-normalization-* && cargo test
+ run: cd $(find target/package/ -maxdepth 1 -mindepth 1 -type d) && cargo test
38
- name: Test package without features
39
- run: cd target/package/unicode-normalization-* && cargo test --no-default-features
+ run: cd $(find target/package/ -maxdepth 1 -mindepth 1 -type d) && cargo test --no-default-features
0 commit comments