Use available Python for Windows ARM wheels #4
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - rust-wrapper-support | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - uses: dtolnay/rust-toolchain@stable | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Rust tests | |
| run: | | |
| PYO3_PYTHON=python cargo test --manifest-path gamdl/downloader/ammuxer/Cargo.toml | |
| - name: Build native extension | |
| run: | | |
| uv run maturin develop |