From ee3f1180b42dcbcf850414b29d11857551d05667 Mon Sep 17 00:00:00 2001 From: dkunhamb Date: Mon, 15 Jul 2024 13:36:27 -0500 Subject: [PATCH] increase parellel jobs to 4 --- .github/workflows/ci_cd.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 33d011e48..2540f97af 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -84,6 +84,7 @@ jobs: runs-on: ${{ matrix.os }} needs: [style] strategy: + max-parallel: 4 fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] @@ -254,6 +255,7 @@ jobs: image: ${{ needs.revn-variations.outputs.test_container }} options: --entrypoint /bin/bash strategy: + max-parallel: 4 fail-fast: false matrix: python-version: ['3.9', '3.10', '3.11', '3.12'] @@ -326,6 +328,7 @@ jobs: image: ${{ needs.revn-variations.outputs.test_container }} options: --entrypoint /bin/bash strategy: + max-parallel: 4 fail-fast: false matrix: python-version: ['3.9', '3.10', '3.11', '3.12'] @@ -399,6 +402,7 @@ jobs: options: --entrypoint /bin/bash needs: [ style, revn-variations] strategy: + max-parallel: 4 fail-fast: false matrix: python-version: ['3.9', '3.10', '3.11', '3.12']