aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorOndřej Čertík <ondrej@certik.us>2020-01-13 22:53:18 -0700
committerOndřej Čertík <ondrej@certik.us>2020-01-13 22:53:43 -0700
commitcb2df62f163e8d497f65ff1b340786090c5dcacd (patch)
treee12576db764047143e2b9c2b35ab81823537d9ec /.github
parentb63872f0c4b236a60f86dbd683faa82f5a2a4650 (diff)
downloadfpm-cb2df62f163e8d497f65ff1b340786090c5dcacd.tar.gz
fpm-cb2df62f163e8d497f65ff1b340786090c5dcacd.zip
Put Cargo in PATH and test it
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/CI.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index b63f9fe..350e1b1 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -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')