use latest rust in the variants (#423) #373
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: Python bindings CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
paths: | |
# When we change code that bindings depend on, we want to ensure that the maturin builds still work | |
- crates/pixi-build-backend/** | |
- Cargo.* | |
# When something in the bindings themselves changes | |
- py-pixi-build-backend/** | |
# Or when this workflow changes | |
- .github/workflows/python-bindings.yml | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
env: | |
PYTHONIOENCODING: utf-8 | |
jobs: | |
format_lint_test: | |
name: Test the Python bindings | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
with: | |
submodules: recursive | |
- uses: prefix-dev/setup-pixi@194d461b21b6c5717c722ffc597fa91ed2ff29fa # v0.9.1 | |
with: | |
manifest-path: py-pixi-build-backend/pixi.toml | |
environments: ci | |
- name: Run clippy | |
run: | | |
cd py-pixi-build-backend | |
pixi run -e ci lint | |
- name: Run tests | |
run: | | |
cd py-pixi-build-backend | |
pixi run -e ci test --color=yes |