Skip to content

Merge pull request #29 from jazzband/pre-commit-ci-update-config #48

Merge pull request #29 from jazzband/pre-commit-ci-update-config

Merge pull request #29 from jazzband/pre-commit-ci-update-config #48

Workflow file for this run

name: Lint & Test
on: [push, pull_request]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff black
- name: Lint with Ruff
run: |
ruff check .
- name: Lint with Black
run: |
black --check .
test:
strategy:
matrix:
python_version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
django_version: ["4.2", "5.1", "5.2"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -q Django~=${{ matrix.django_version }}
pip install coverage pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
run: |
coverage3 run --source='./encrypted_fields' manage.py test
coverage xml
# - name: "Upload coverage to Artifact"
# uses: actions/upload-artifact@v4
# with:
# name: coverage
# path: coverage.xml