File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -51,22 +51,24 @@ jobs:
51
51
if : contains( matrix.os, 'macos')
52
52
run : |
53
53
curl https://sh.rustup.rs -sSf | sh -s -- -y
54
- export PATH="$HOME/.cargo/bin:$PATH"
55
- which cargo
56
- cargo
57
54
58
55
- name : Install GFortran macOS
59
56
if : contains( matrix.os, 'macos')
60
57
run : brew install gcc@${GCC_V} || brew upgrade gcc@${GCC_V} || true
61
58
62
59
- name : Build
63
- run : cargo build --verbose
60
+ run : |
61
+ export PATH="$HOME/.cargo/bin:$PATH"
62
+ cargo build --verbose
64
63
65
64
- name : Run tests
66
- run : cargo test --verbose
65
+ run : |
66
+ export PATH="$HOME/.cargo/bin:$PATH"
67
+ cargo test --verbose
67
68
68
69
# TODO: integrate these with `cargo test` above
69
70
- name : Run manual tests
70
71
run : |
72
+ export PATH="$HOME/.cargo/bin:$PATH"
71
73
cargo run -- --help
72
74
./run_tests.sh
You can’t perform that action at this time.
0 commit comments