From 084d48bb834de525e103a3d71da1eb5bfbddea87 Mon Sep 17 00:00:00 2001 From: Mark Mercado Date: Sun, 18 Dec 2022 08:25:41 -0500 Subject: [PATCH 1/2] Add python38 --- .github/workflows/pack-build_and_test.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pack-build_and_test.yaml b/.github/workflows/pack-build_and_test.yaml index 079e6973..7f1803a2 100644 --- a/.github/workflows/pack-build_and_test.yaml +++ b/.github/workflows/pack-build_and_test.yaml @@ -38,17 +38,21 @@ jobs: # "Build and Test / Python 3.6" name: 'Python ${{ matrix.python-version-short }}' strategy: + fail-fast: false + max-parallel: 2 matrix: include: - python-version-short: "3.6" python-version: 3.6.13 + - python-version-short: "3.8" + python-version: 3.8.10 steps: - name: Checkout Pack Repo and CI Repos uses: StackStorm-Exchange/ci/.github/actions/checkout@master with: st2-branch: ${{ inputs.st2-branch }} lint-configs-branch: ${{ inputs.lint-configs-branch }} - + - name: Install APT Dependencies uses: StackStorm-Exchange/ci/.github/actions/apt-dependencies@master with: From 0a40302194d19ecd6a02adc22004d5a20e6b185e Mon Sep 17 00:00:00 2001 From: Mark Mercado Date: Sun, 18 Dec 2022 09:24:52 -0500 Subject: [PATCH 2/2] Update the comment --- .github/workflows/pack-build_and_test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pack-build_and_test.yaml b/.github/workflows/pack-build_and_test.yaml index 7f1803a2..7e83778f 100644 --- a/.github/workflows/pack-build_and_test.yaml +++ b/.github/workflows/pack-build_and_test.yaml @@ -35,7 +35,7 @@ jobs: build_and_test: runs-on: ubuntu-20.04 # When parent workflow is named "Build and Test" this shows up as: - # "Build and Test / Python 3.6" + # "Build and Test / Python 3.X" name: 'Python ${{ matrix.python-version-short }}' strategy: fail-fast: false