From 1e0b2ba66886a43cc3e2d718ae3afdcd5a2ce2ea Mon Sep 17 00:00:00 2001 From: JoeZiminski Date: Fri, 27 Sep 2024 09:37:23 +0100 Subject: [PATCH] Fix file. --- .github/workflows/code_test_and_deploy.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/code_test_and_deploy.yml b/.github/workflows/code_test_and_deploy.yml index 1e656e77..7f51dc80 100644 --- a/.github/workflows/code_test_and_deploy.yml +++ b/.github/workflows/code_test_and_deploy.yml @@ -34,8 +34,7 @@ jobs: # the weekly cron job. os: [windows-latest, ubuntu-latest, macos-14, macos-13] # Test all Python versions for cron job, and only first/last for other triggers - python-version: ${{ toJSON(fromJson(github.event_name == 'schedule' && '["3.9", "3.10", "3.11", "3.12"]' || '["3.9", "3.12"]')) }} - fail-fast: false + python-version: ${{ fromJson(github.event_name == 'schedule' && '["3.9", "3.10", "3.11", "3.12"]' || '["3.9", "3.12"]') }} steps: - uses: actions/checkout@v4