feat: implement the magic
module. (#91)
#394
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: Python extension | |
on: | |
push: | |
paths: | |
- 'py/**' | |
- '.github/workflows/python.yaml' | |
permissions: | |
contents: read | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8, 3.9, "3.10", "3.11"] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# Windows | |
- name: Install OpenSSL | |
if: runner.os == 'Windows' | |
id: vcpkg | |
uses: johnwason/vcpkg-action@v5 | |
with: | |
pkgs: openssl | |
triplet: x64-windows-static | |
token: ${{ github.token }} | |
- name: Set OPENSSL_DIR environment variable | |
if: runner.os == 'Windows' | |
shell: bash | |
run: echo "OPENSSL_DIR=${{ github.workspace }}\\vcpkg\\installed\\x64-windows-static" >> $GITHUB_ENV | |
- name: Test Python - Windows | |
if: runner.os == 'Windows' | |
run: | | |
pip install virtualenv | |
virtualenv venv; venv\Scripts\activate.ps1 | |
pwd | |
python -m pip install --upgrade pip maturin | |
python -m pip install pytest | |
maturin develop --manifest-path py/Cargo.toml | |
pytest py | |
# Non-windows | |
- name: Test Python - Non-Windows | |
if: runner.os != 'Windows' | |
run: | | |
pip install virtualenv | |
virtualenv venv; source venv/bin/activate | |
python -m pip install --upgrade pip maturin | |
python -m pip install pytest | |
maturin develop --manifest-path py/Cargo.toml | |
pytest py | |