CI #333
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- "doc/*.rst" | |
schedule: | |
- cron: "0 17 * * 0" | |
jobs: | |
pytest: | |
name: Python ${{ matrix.python-version }} / Django ${{ matrix.django-version }} | |
runs-on: ubuntu-latest | |
services: | |
selenium: | |
image: selenium/standalone-chrome | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9] | |
django-version: ["~=3.1.0", "~=3.2.0", "~=4.0.6"] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/cache@v2 | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('tests/requirements_test.txt') }}-${{ matrix.django-version }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r tests/requirements_test.txt | |
pip uninstall -y Django | |
pip install Django${{ matrix.django-version }} | |
- name: Install OS dependencies | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
run: | | |
sudo apt-get install gettext | |
- name: Run pytest | |
run: | | |
pytest --cov-config=setup.cfg --cov-report=xml --cov=. | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v2 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
pypi: | |
name: PYPI check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install setuptools wheel twine | |
- name: Build and check | |
run: | | |
python setup.py sdist bdist_wheel | |
twine check dist/* | |
docs: | |
name: docs tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ammaraskar/sphinx-action@master | |
with: | |
docs-folder: "docs/" |