diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-01-14 08:58:42 -0700 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-01-14 08:58:42 -0700 |
commit | 30c7219ff8504b7597b65ef924e16c729e12e8fe (patch) | |
tree | 18ddf1e76c450d8dc3acde26b8314ba7a8a2f4b6 /.github/workflows | |
parent | ff51bcf0daf4effcf1f89ac95b549c065a093c8a (diff) | |
download | fpm-30c7219ff8504b7597b65ef924e16c729e12e8fe.tar.gz fpm-30c7219ff8504b7597b65ef924e16c729e12e8fe.zip |
Install Rust on Windows
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/CI.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index fa42b2f..5cb1c98 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -52,7 +52,7 @@ jobs: run: brew install gcc@${GCC_V} || brew upgrade gcc@${GCC_V} || true - name: Install Rust macOS - if: contains(matrix.os, 'macos') + if: contains(matrix.os, 'macos') || contains(matrix.os, 'windows') run: | curl https://sh.rustup.rs -sSf | sh -s -- -y |