Skip to content

Commit

Permalink
Put Cargo in PATH and test it
Browse files Browse the repository at this point in the history
  • Loading branch information
certik committed Jan 14, 2020
1 parent b63872f commit cb2df62
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ jobs:
- name: Install Rust macOS
if: contains( matrix.os, 'macos')
run: curl https://sh.rustup.rs -sSf | sh -s -- -y
run: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
export PATH="$HOME/.cargo/bin:$PATH"
which cargo
cargo
- name: Install GFortran macOS
if: contains( matrix.os, 'macos')
Expand Down

0 comments on commit cb2df62

Please sign in to comment.