2022-07-20 15:00:14 +02:00
|
|
|
name: Python package
|
|
|
|
|
2022-08-08 18:41:57 +02:00
|
|
|
on: [pull_request]
|
2022-07-20 15:00:14 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-06-16 04:02:13 +02:00
|
|
|
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
2022-08-05 14:27:29 +02:00
|
|
|
django-version: ["32","4"]
|
2022-07-20 15:00:14 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-08-05 10:04:50 +02:00
|
|
|
|
2022-07-20 15:00:14 +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
|
2022-08-05 14:27:29 +02:00
|
|
|
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
|
|
|
|
2022-07-20 15:00:14 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
2022-08-05 14:27:29 +02:00
|
|
|
pip install -r requirements.txt -r requirements-testing.txt -c constraints-Django${{ matrix.django-version }}.txt
|
2022-08-05 10:04:50 +02:00
|
|
|
|
2023-11-14 20:07:25 +01:00
|
|
|
- name: Lint with ruff
|
2022-07-22 01:06:42 +02:00
|
|
|
run: |
|
2023-11-14 20:07:25 +01:00
|
|
|
pip install ruff
|
|
|
|
ruff helpdesk
|
2022-08-05 10:04:50 +02:00
|
|
|
|
2022-07-20 15:00:14 +02:00
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
|
|
|
pip install pytest
|
|
|
|
cd ${GITHUB_WORKSPACE} && python quicktest.py
|
|
|
|
env:
|
|
|
|
DJANGO_SETTINGS_MODULE: helpdesk.settings
|
|
|
|
|