Skip to content

Commit b66fc67

Browse files
committed
Debug CI
1 parent 3b95ddc commit b66fc67

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ jobs:
1818
- name: Setup nightly rust
1919
run: rustup toolchain install nightly
2020
- name: Run unit tests
21-
run: rustc --version && cargo --version && cargo test
21+
run: |
22+
echo $PATH
23+
export PATH=$HOME/.cargo/bin:$PATH
24+
echo `which cargo`
25+
rustc --version && cargo --version && cargo test
2226
- name: Run script tests
2327
if: runner.os != 'Windows'
2428
run: |

0 commit comments

Comments
 (0)