django-helpdeskmig/.github/workflows/pythonpackage.yml

43 lines
1.1 KiB
YAML
Raw Normal View History

name: Python package
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
django-version: ["32","4"]
steps:
- uses: actions/checkout@v3
2022-08-05 10:04:50 +02:00
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
2022-08-05 10:04:50 +02:00
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-testing.txt')}}-${{ hashFiles('tox.ini') }}-${{ matrix.python-version }}-${{ matrix.django-version }}
2022-08-05 10:04:50 +02:00
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-testing.txt -c constraints-Django${{ matrix.django-version }}.txt
2022-08-05 10:04:50 +02:00
- name: Lint with ruff
2022-07-22 01:06:42 +02:00
run: |
pip install ruff
ruff helpdesk
2022-08-05 10:04:50 +02:00
- name: Test with pytest
run: |
pip install pytest
cd ${GITHUB_WORKSPACE} && python quicktest.py
env:
DJANGO_SETTINGS_MODULE: helpdesk.settings