From 38e211fc59ce8282cd283663d2f82a8176d7ef8d Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Tue, 24 Oct 2023 23:17:13 -0500 Subject: [PATCH] [ci all]: Include oldest and newest Windows Python --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74a1c1bacd..60746841b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,14 +26,15 @@ jobs: || (github.event_name == 'push' && github.ref != 'refs/heads/main' && contains(github.event.head_commit.message, '[ci all]')) strategy: matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest] python-version: ['3.8', '3.9', '3.10', '3.11'] include: - os: macos-latest python-version: '3.11' - exclude: - os: windows-latest - python-version: '3.8' + python-version: '3.9' + - os: windows-latest + python-version: '3.11' steps: - uses: actions/checkout@v4