Skip to content

Commit a23d61b

Browse files
committed
Only test macOS on stable
Most of the advantages from testing various Rust versions already come from running those tests on Linux and Windows. There's very little gain from also running these tests on macOS, while macOS jobs are the slowest to schedule. Signed-off-by: Joe Richey <[email protected]>
1 parent e2fc05e commit a23d61b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,12 @@ jobs:
3939
runs-on: ${{ matrix.os }}
4040
strategy:
4141
matrix:
42-
os: [ubuntu-latest, macos-latest, windows-latest]
42+
os: [ubuntu-latest, windows-latest]
4343
toolchain: [nightly, beta, stable, 1.34]
44+
# Only Test macOS on stable to reduce macOS CI jobs
45+
include:
46+
- os: macos-latest
47+
toolchain: stable
4448
steps:
4549
- uses: actions/checkout@v2
4650
- uses: actions-rs/toolchain@v1

0 commit comments

Comments
 (0)