Skip to content

drop support for python 3.7 #506

drop support for python 3.7

drop support for python 3.7 #506

Workflow file for this run

name: python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run Tox on 3.8
run: |
cd server
pip install tox
tox
env:
TOXENV: py38-buildout_2_9_2,py38-buildout_current
if: matrix.python-version == '3.8'
- name: Run Tox on 3.9
run: |
cd server
pip install tox
tox
env:
TOXENV: py39-buildout_2_9_2,py39-buildout_current
if: matrix.python-version == '3.9'
- name: Run Tox on 3.10
run: |
cd server
pip install tox
tox
env:
TOXENV: py310-buildout_current
if: matrix.python-version == '3.10'
- name: Run Tox on 3.11
run: |
cd server
pip install tox
tox
env:
TOXENV: py311-buildout_current
if: matrix.python-version == '3.11'
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v2
with:
files: server/coverage.xml
if: matrix.python-version == '3.11'