Skip to content

CI

CI #2415

Workflow file for this run

---
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
# * is a special character in YAML so you have to quote this string
# Run at 1:00 every day
- cron: '0 1 * * *'
jobs:
build:
strategy:
matrix:
uv-resolution: ['highest', 'lowest']
# The minimum version should be represented in pyproject.toml.
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: "Install uv"
run: "pip install --upgrade uv"
- name: "Create virtual environment"
id: venv
run: |
if [ "${{ matrix.os }}" = "windows-latest" ]; then
uv venv C:/Users/runner/.venv
echo "activate=C:/Users/runner/.venv/Scripts/Activate.ps1" >> "$GITHUB_OUTPUT"
else
uv venv /home/runner/.venv
echo "activate=source /home/runner/.venv/bin/activate" >> "$GITHUB_OUTPUT"
fi
shell: bash
- name: "Install dependencies"
run: |
${{ steps.venv.outputs.activate }}
# We want the latest dev requirements, but the lowest install requirements.
uv pip install --upgrade --editable .[dev]
uv pip install --resolution=${{ matrix.uv-resolution }} --upgrade --editable .
- name: "Lint"
run: |
${{ steps.venv.outputs.activate }}
mypy .
ruff check .
ruff format --check .
pip-extra-reqs pip_check_reqs
pip-missing-reqs pip_check_reqs
pylint pip_check_reqs tests
pyroma --min=10 .
pyproject-fmt --check .
pyright .
actionlint
- name: "Run tests"
run: |
${{ steps.venv.outputs.activate }}
pytest -s -vvv --cov-fail-under 100 --cov=pip_check_reqs/ --cov=tests tests/ --cov-report=xml