From 4fdfc76d04b0d6c81bca7b7e109de70d4f92e0fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C5=BD=C3=A1dn=C3=ADk?= Date: Sun, 13 Feb 2022 14:45:53 +0200 Subject: [PATCH] Prune the testing matrix (#4456) --- .github/workflows/ci.yml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 239cecced8..9c33a4d901 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,17 +7,26 @@ jobs: strategy: fail-fast: false matrix: - platform: [ubuntu-latest, macos-latest, windows-latest] - style: [minimal, default, all] + platform: [windows-latest, macos-latest, ubuntu-latest] + style: [all, default, minimal] rust: - stable include: - - style: minimal - flags: '--no-default-features' - - style: default - flags: '' - style: all flags: '--all-features' + - style: default + flags: '' + - style: minimal + flags: '--no-default-features' + exclude: + - platform: windows-latest + style: default + - platform: windows-latest + style: minimal + - platform: macos-latest + style: default + - platform: macos-latest + style: minimal runs-on: ${{ matrix.platform }}