Merge pull request #106 from cclauss/patch-1 #144
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: Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: ['3.8', '3.12'] | |
django-version: [3.2, 4.2, 5.0, 5.1] | |
exclude: | |
- python-version: "3.12" | |
django-version: "3.2" | |
- python-version: "3.8" | |
django-version: "5.0" | |
- python-version: "3.8" | |
django-version: "5.1" | |
steps: | |
# Python & dependency installation | |
- uses: actions/checkout@v4 | |
- name: setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install dependencies | |
run: pip install black ruff --pre Django==${{ matrix.django-version }} | |
- name: lint with ruff | |
run: ruff check --output-format=github | |
- name: lint with black | |
run: black --check honeypot | |
- name: run tests | |
run: django-admin test --settings=test_settings --pythonpath=. |