From 7e2ccf44a5538569718e9f226b897171fecf1968 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 15 Apr 2024 14:38:50 -0700 Subject: [PATCH] Bug fix? Use a singleton matrix dimension to force `include` to overlap --- .github/workflows/ci.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9c91503b..0c641b9c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,12 +13,16 @@ jobs: strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] + singleton: [1] include: - - rustalias: stable + - singleton: 1 + rustalias: stable rust: stable - - rustalias: msrv + - singleton: 1 + rustalias: msrv rust: '1.70' - - rustalias: nightly + - singleton: 1 + rustalias: nightly rust: nightly name: Build and test (${{ matrix.os }}, ${{ matrix.rustalias }}) runs-on: ${{ matrix.os }}