Skip to content

Merge pull request #1103 from python-openapi/feature/django-6-support #15

Merge pull request #1103 from python-openapi/feature/django-6-support

Merge pull request #1103 from python-openapi/feature/django-6-support #15

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: CI / Core / Tests
on:
push:
paths-ignore:
- openapi_core/contrib/**
- tests/integration/contrib/**
- tests/unit/contrib/**
- docs/integrations/**
- .github/workflows/contrib-tests.yml
pull_request:
types: [opened, synchronize]
paths-ignore:
- openapi_core/contrib/**
- tests/integration/contrib/**
- tests/unit/contrib/**
- docs/integrations/**
- .github/workflows/contrib-tests.yml
permissions:
contents: read
jobs:
core_tests:
name: "py${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
fail-fast: false
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Get full Python version
id: full-python-version
run: python -c "import sys; print(f\"version={'-'.join(str(v) for v in sys.version_info)}\")" >> "$GITHUB_OUTPUT"
- name: Set up poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.3.1"
- name: Configure poetry
run: poetry config virtualenvs.in-project true
- name: Set up cache
uses: actions/cache@v5
id: cache
with:
path: .venv
key: venv-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}
- name: Ensure cache is healthy
if: steps.cache.outputs.cache-hit == 'true'
run: timeout 10s poetry run pip --version || rm -rf .venv
- name: Install dependencies
run: poetry install --all-extras
- name: Test
env:
PYTEST_ADDOPTS: "--color=yes"
run: poetry run pytest --ignore=tests/integration/contrib --ignore=tests/unit/contrib
- name: Static type check
run: poetry run mypy
- name: Check dependencies
run: poetry run deptry .
- name: Upload coverage
uses: codecov/codecov-action@v5
static_checks:
name: "Core / Static Checks"
runs-on: ubuntu-latest
steps:
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
uses: actions/checkout@v6
- name: "Setup Python"
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Get full Python version
id: full-python-version
run: python -c "import sys; print(f\"version={'-'.join(str(v) for v in sys.version_info)}\")" >> "$GITHUB_OUTPUT"
- name: Set up poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.3.1"
- name: Configure poetry
run: poetry config virtualenvs.in-project true
- name: Set up cache
uses: actions/cache@v5
id: cache
with:
path: .venv
key: venv-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}
- name: Ensure cache is healthy
if: steps.cache.outputs.cache-hit == 'true'
run: timeout 10s poetry run pip --version || rm -rf .venv
- name: Install dependencies
run: poetry install
- name: Run static checks
run: poetry run pre-commit run -a