diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-01-13 22:53:18 -0700 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-01-13 22:53:43 -0700 |
commit | cb2df62f163e8d497f65ff1b340786090c5dcacd (patch) | |
tree | e12576db764047143e2b9c2b35ab81823537d9ec /.github/workflows/CI.yml | |
parent | b63872f0c4b236a60f86dbd683faa82f5a2a4650 (diff) | |
download | fpm-cb2df62f163e8d497f65ff1b340786090c5dcacd.tar.gz fpm-cb2df62f163e8d497f65ff1b340786090c5dcacd.zip |
Put Cargo in PATH and test it
Diffstat (limited to '.github/workflows/CI.yml')
-rw-r--r-- | .github/workflows/CI.yml | 6 |
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') |