Skip to content

Merge pull request #3 from epfl-si/enh-add-django32-42-py39-py310-py3… #12

Merge pull request #3 from epfl-si/enh-add-django32-42-py39-py310-py3…

Merge pull request #3 from epfl-si/enh-add-django32-42-py39-py310-py3… #12

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['2.7', '3.6', '3.7', '3.8','3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
# Special handling for Python 2.7
- name: Set up Python 2.7 and pip (+ install dependencies)
if: matrix.python-version == '2.7'
run: |
sudo apt-get update
sudo apt-get install -y python2.7 curl
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
python2.7 get-pip.py --upgrade "pip<21.0" "setuptools<45"
python2.7 -m pip install tox==3.24.4 tox-gh-actions
- name: Set up Python ${{ matrix.python-version }}
if: matrix.python-version != '2.7'
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache
uses: actions/cache@v2
with:
path: ~/.cache/pip
key:
${{ matrix.python-version }}-v1-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ matrix.python-version }}-v1-
- name: Install dependencies for Python 3.x
if: matrix.python-version != '2.7'
run: |
python -m pip install --upgrade pip setuptools
python -m pip install --upgrade tox tox-gh-actions
- name: Tox tests
run: |
tox -v
- name: Upload coverage
uses: codecov/codecov-action@v1
with:
name: Python ${{ matrix.python-version }}