Skip to content

Commit

Permalink
add steps to test old pyramid versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerickel committed Nov 27, 2021
1 parent 4a73700 commit a44ad5c
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/ci-tests.yml
Expand Up @@ -27,7 +27,6 @@ jobs:
architecture:
- x64
- x86

exclude:
# Linux and macOS don't have x86 python
- os: "ubuntu-latest"
Expand All @@ -46,6 +45,31 @@ jobs:
- run: pip install tox
- name: Running tox
run: tox -e py
test_old_pyramids:
strategy:
matrix:
pyramid:
- "pyramid13"
- "pyramid14"
- "pyramid15"
- "pyramid16"
- "pyramid17"
- "pyramid18"
- "pyramid19"
- "pyramid110"
- "pyramid20"
name: "Python: py39-${{ matrix.pyramid }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: "3.9"
architecture: x64
- run: pip install tox
- name: Running tox
run: tox -e py39-${{ matrix.pyramid }}
coverage:
runs-on: ubuntu-latest
name: Validate coverage
Expand Down

0 comments on commit a44ad5c

Please sign in to comment.