add options to disable zstd and bz2 (#420) #4
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 bindings CI | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'py-rattler/**/*' | |
- '.github/workflows/python-bindings.yml' | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
format_lint_test: | |
name: Format, Lint and Test the Python bindings | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
lfs: true | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.5.0 | |
cache: true | |
manifest-path: py-rattler/pixi.toml | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
components: clippy, rustfmt | |
- name: Format and Lint | |
run: | | |
cd py-rattler | |
pixi run lint | |
pixi run fmt-check | |
- name: Run tests | |
run: | | |
cd py-rattler | |
pixi run test |