Skip to content

Add an option to desactive browser cache for openapi files #87

Add an option to desactive browser cache for openapi files

Add an option to desactive browser cache for openapi files #87

Workflow file for this run

name: Unit Tests
on: [push, pull_request, workflow_dispatch]
jobs:
run:
name: Run unit tests with multiple Python versions
runs-on: ${{ matrix.os }}
env:
USING_COVERAGE: '3.8'
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@master
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev --frozen
- name: Run tests
run: uv run pytest tests -m "not e2e"