Add integration test with pip #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
matrix: | |
python: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
cache-dependency-glob: pyproject.toml | |
- name: Install Python ${{ matrix.python }} | |
run: uv python install ${{ matrix.python }} | |
- name: test | |
run: make test INSTALL_EXTRA=test | |
integration-test: | |
strategy: | |
matrix: | |
python: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
pip: | |
- "git+https://github.com/pypa/pip.git@main" | |
# PR adding the plugin architecture to pip | |
# Remove once it's merged | |
- "git+https://github.com/pypa/pip.git@refs/pull/12985/head" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
cache-dependency-glob: pyproject.toml | |
- name: Create virtual env | |
run: uv venv --python ${{ matrix.python }} | |
- name: Install pip | |
run: uv pip install ${{ matrix.pip }} | |
- name: Install plugin | |
run: uv run -- pip install . | |
- name: Install package with provenance available | |
run: uv run -- pip install abi3info==2024.10.26 | |
- name: Install package without provenance available | |
run: uv run -- pip install abi3info==2023.8.25 | |