Skip to content

ci: Add release-please, publish to PyPI #1

ci: Add release-please, publish to PyPI

ci: Add release-please, publish to PyPI #1

Workflow file for this run

name: Python Checks and Unit Tests
on:
pull_request:
jobs:
lint-test:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pipx install poetry
- name: Install Dependencies
run: poetry install --with dev
- name: Check for missing migrations
run: poetry run python manage.py makemigrations --no-input --dry-run --check
- name: Check for new typing errors
run: poetry run mypy .
- name: Run Tests
run: poetry run pytest