10000 Fix cd to package · emilio/unicode-normalization@e3ed0fe · GitHub
[go: up one dir, main page]

Skip to content

Commit e3ed0fe

Browse files
committed
Fix cd to package
1 parent 4e05cc1 commit e3ed0fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ jobs:
3434
- name: Package
3535
run: cargo package
3636
- name: Test package
37-
run: cd target/package/unicode-normalization-* && cargo test
37+
run: cd $(find target/package/ -maxdepth 1 -mindepth 1 -type d) && cargo test
3838
- name: Test package without features
39-
run: cd target/package/unicode-normalization-* && cargo test --no-default-features
39+
run: cd $(find target/package/ -maxdepth 1 -mindepth 1 -type d) && cargo test --no-default-features

0 commit comments

Comments
 (0)
0