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 3b95ddc commit b66fc67Copy full SHA for b66fc67
.github/workflows/ci.yml
@@ -18,7 +18,11 @@ jobs:
18
- name: Setup nightly rust
19
run: rustup toolchain install nightly
20
- name: Run unit tests
21
- run: rustc --version && cargo --version && cargo test
+ run: |
22
+ echo $PATH
23
+ export PATH=$HOME/.cargo/bin:$PATH
24
+ echo `which cargo`
25
+ rustc --version && cargo --version && cargo test
26
- name: Run script tests
27
if: runner.os != 'Windows'
28
run: |
0 commit comments