Skip to content

Commit 9c654ec

Browse files
committed
don't try-install on MacOS (#384)
Problem is that these runners are always slow, whereas the ones on windows are only _sometimes_ slow. Generally we don't have to assume installation fails on unix as long as we can build tests, so installing on windows alone should be all that's needed to get relevant coverage.
1 parent 8be90df commit 9c654ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
if: startsWith(matrix.os, 'macos')
4141
run:
4242
brew install tree openssl
43-
- name: "Check default features build"
43+
- name: "cargo check default features"
4444
if: startsWith(matrix.os, 'windows')
4545
uses: actions-rs/cargo@v1
4646
with:
@@ -57,6 +57,7 @@ jobs:
5757
run: vcpkg install zlib:x64-windows-static-md
5858
if: startsWith(matrix.os, 'windows')
5959
- name: "Installation from crates.io"
60+
if: startsWith(matrix.os, 'windows')
6061
uses: actions-rs/cargo@v1
6162
with:
6263
command: install

0 commit comments

Comments
 (0)