Skip to content

Commit

Permalink
Merge pull request #114 from cisagov/bug/pin_ubuntu_image_for_py3.6
Browse files Browse the repository at this point in the history
Pin Python 3.6 testing to Ubuntu 20.04
  • Loading branch information
mcdonnnj committed Jan 7, 2023
2 parents 7dc735b + d9a1c30 commit a118836
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,20 @@ jobs:
uses: mxschmitt/action-tmate@v3
if: env.RUN_TMATE
test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
include:
- os: ubuntu-20.04
python-version: "3.6"
steps:
- uses: actions/checkout@v3
- id: setup-python
Expand Down Expand Up @@ -193,17 +197,21 @@ jobs:
uses: mxschmitt/action-tmate@v3
if: env.RUN_TMATE
build:
runs-on: ubuntu-latest
needs: [lint, test]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
include:
- os: ubuntu-20.04
python-version: "3.6"
needs: [lint, test]
steps:
- uses: actions/checkout@v3
- id: setup-python
Expand Down

0 comments on commit a118836

Please sign in to comment.