Skip to content

[pre-commit.ci] pre-commit autoupdate #317

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #317

Workflow file for this run

name: Tests
on:
push:
pull_request:
branches:
- main
jobs:
unit-test:
name: Python ${{ matrix.python-version }} - Django ${{ matrix.django-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
django-version: ['3.2', '4.2', '5.0', 'main']
exclude:
- python-version: '3.8'
django-version: '5.0'
- python-version: '3.8'
django-version: 'main'
- python-version: '3.9'
django-version: '5.0'
- python-version: '3.9'
django-version: 'main'
- python-version: '3.11'
django-version: '3.2'
- python-version: '3.12'
django-version: '3.2'
- python-version: '3.12'
django-version: '4.2'
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox tox-gh-actions
- name: Tox tests
run: |
tox -v
env:
DJANGO: ${{ matrix.django-version }}
build-and-install-package:
runs-on: ubuntu-latest
name: Build and install the package
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.8
architecture: x64
- run: |
pip install wheel
python setup.py sdist
pip install dist/django-jalali*