We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2fa2cb0 + 6dc3192 commit 932988eCopy full SHA for 932988e
.github/workflows/build_and_test.yaml
@@ -12,13 +12,15 @@ jobs:
12
# assuming that any pull requests from the same repo are infra changes.
13
if: github.event.pull_request.head.repo.full_name != github.repository
14
15
- runs-on: ubuntu-latest
+ # As long as we need Python 3.6 here in the test, we can only use up to Ubuntu 20
16
+ # See https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
17
+ runs-on: ubuntu-20.04
18
name: 'Build and Test / Python ${{ matrix.python-version-short }}'
19
strategy:
20
matrix:
21
include:
22
- python-version-short: "3.6"
- python-version: 3.6.13
23
+ python-version: 3.6.15
24
steps:
25
- name: Checkout Pack Repo and CI Repos
26
uses: StackStorm-Exchange/ci/.github/actions/checkout@master
0 commit comments