From 434bfb6b0b1eda24ae9b31abe9b9f94c63d58057 Mon Sep 17 00:00:00 2001 From: Colin Leong <122366389+cleong110@users.noreply.github.com> Date: Mon, 13 Jan 2025 11:00:13 -0500 Subject: [PATCH] Change matrix strategy fail-fast to false, so that we can still run tests if Python 3.8 does not work --- .github/workflows/python.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index 16856e4..db0becf 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -13,6 +13,7 @@ jobs: strategy: matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + fail-fast: false steps: - uses: actions/checkout@v3