Skip to content

index: match git on invalid checkout paths #4640

index: match git on invalid checkout paths

index: match git on invalid checkout paths #4640

Workflow file for this run

name: Python tests
on:
push:
branches: [ main, master ]
pull_request:
schedule:
- cron: "0 6 * * *" # Daily 6AM UTC build
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
["3.10", "3.11", "3.12", "3.13", "3.14"]
fail-fast: false
steps:
- uses: actions/checkout@v6.0.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
- name: Install native dependencies (Ubuntu)
run: sudo apt-get update && sudo apt-get install -y libgpgme-dev libgpg-error-dev
if: "matrix.os == 'ubuntu-latest'"
- name: Provide gpgme-config and gpg-error-config
if: "matrix.os == 'ubuntu-latest'"
run: |
mkdir -p "$HOME/.local/bin"
cp .github/gpgme-config "$HOME/.local/bin/gpgme-config"
cp .github/gpg-error-config "$HOME/.local/bin/gpg-error-config"
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
# Install build-time dependencies
python -m pip install --upgrade "setuptools>=77"
python -m pip install --upgrade pip
pip install --upgrade ".[merge,fastimport,paramiko,https,patiencediff,colordiff,range_diff]" setuptools-rust
- name: Install gpg on supported platforms
run: pip install --upgrade ".[pgp]"
if: "matrix.os == 'ubuntu-latest' && matrix.python-version != 'pypy3'"
- name: Style checks
run: |
pip install ".[dev]"
python -m ruff check .
python -m ruff format --check .
- name: Typing checks
run: |
pip install --upgrade types-paramiko types-requests
python -m mypy dulwich
if: "matrix.python-version != 'pypy3'"
- name: Build
run: |
python setup.py build_ext -i
env:
RUSTFLAGS: "-D warnings"
- name: Run Rust tests
run: |
cargo test
env:
RUSTFLAGS: "-D warnings"
- name: codespell
run: |
codespell --config .codespellrc .
- name: Coverage test suite run
run: |
pip install --upgrade coverage
python -m coverage run -p -m unittest tests.test_suite
- name: Property-based tests
run: |
pip install --upgrade ".[hypothesis]"
python -m unittest discover property_tests
env:
HYPOTHESIS_PROFILE: ci
- name: Run contrib tests
run: |
python -m unittest contrib.test_suite
test-minimal:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.13"]
fail-fast: false
steps:
- uses: actions/checkout@v6.0.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
- name: Install dependencies (minimal - no optional dependencies or Rust extensions)
run: |
python -m pip install --upgrade "setuptools>=77"
python -m pip install --upgrade pip
pip install --upgrade .
- name: Test suite run (minimal dependencies, pure Python)
run: |
python -m unittest tests.test_suite