2021-04-06 20:34:18 +03:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-04-16 19:23:18 +03:00
|
|
|
- master
|
2021-04-06 20:34:18 +03:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
name: Python ${{ matrix.python-version }}
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version:
|
|
|
|
- '3.6'
|
|
|
|
- '3.7'
|
|
|
|
- '3.8'
|
|
|
|
- '3.9'
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
|
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/*.txt') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pip-
|
|
|
|
|
|
|
|
- name: Upgrade packaging tools
|
|
|
|
run: python -m pip install --upgrade pip setuptools virtualenv wheel
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2021-04-16 19:59:27 +03:00
|
|
|
run: python -m pip install --upgrade codecov tox tox-py
|
2021-04-06 20:34:18 +03:00
|
|
|
|
|
|
|
- name: Run tox targets for ${{ matrix.python-version }}
|
2021-04-16 19:59:27 +03:00
|
|
|
run: tox --py current
|
2021-04-06 20:34:18 +03:00
|
|
|
|
|
|
|
- name: Run extra tox targets
|
|
|
|
if: ${{ matrix.python-version == '3.9' }}
|
|
|
|
run: |
|
|
|
|
python setup.py bdist_wheel
|
|
|
|
rm -r djangorestframework.egg-info # see #6139
|
|
|
|
tox -e base,dist,docs
|
|
|
|
tox -e dist --installpkg ./dist/djangorestframework-*.whl
|
|
|
|
|
|
|
|
- name: Upload coverage
|
|
|
|
run: |
|
|
|
|
codecov -e TOXENV,DJANGO
|