diff options
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') |