Add system install test for PyPy (#2189)

This commit is contained in:
Charlie Marsh 2024-03-04 16:44:18 -08:00 committed by GitHub
parent a3c24e7bea
commit 7e1f361bb3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 27 additions and 0 deletions

View File

@ -45,6 +45,33 @@ jobs:
- name: "Create virtual environment"
run: ./target/debug/uv venv
install-pypy:
name: "Install PyPy on Ubuntu"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 'pypy3.9'
- name: "Install Rust toolchain"
run: rustup show
- uses: Swatinem/rust-cache@v2
- name: "Build"
run: cargo build
- name: "Print Python path"
run: echo $(which pypy)
- name: "Validate global Python install"
run: pypy scripts/check_system_python.py --uv ./target/debug/uv
- name: "Create virtual environment"
run: ./target/debug/uv venv
install-macos:
name: "Install Python on macOS"
runs-on: macos-14