From f472dd5dae8791c817af54bec7913d8540e8a1e8 Mon Sep 17 00:00:00 2001 From: TimMonko <47310455+TimMonko@users.noreply.github.com> Date: Thu, 10 Oct 2024 08:29:58 -0500 Subject: [PATCH 1/2] Update test_and_deploy.yml --- .github/workflows/test_and_deploy.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index b7be60a..bdcb755 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -19,16 +19,17 @@ jobs: name: ${{ matrix.platform }} py${{ matrix.python-version }} runs-on: ${{ matrix.platform }} strategy: + fail-fast: false matrix: # platform: [ubuntu-latest, windows-latest, macos-latest] platform: [ubuntu-latest, windows-latest] python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -77,9 +78,9 @@ jobs: runs-on: ubuntu-latest if: contains(github.ref, 'tags') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.x" - name: Install dependencies From f524fee021ca8983f883e928f1a74b2b5ace24f5 Mon Sep 17 00:00:00 2001 From: Tim Monko <47310455+TimMonko@users.noreply.github.com> Date: Thu, 10 Oct 2024 08:47:51 -0500 Subject: [PATCH 2/2] Update test_and_deploy.yml --- .github/workflows/test_and_deploy.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index bdcb755..ac6cdaa 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -19,7 +19,6 @@ jobs: name: ${{ matrix.platform }} py${{ matrix.python-version }} runs-on: ${{ matrix.platform }} strategy: - fail-fast: false matrix: # platform: [ubuntu-latest, windows-latest, macos-latest] platform: [ubuntu-latest, windows-latest]