This repository was archived by the owner on Jul 28, 2025. It is now read-only.
chore: Use new unreleased Rust Polars 0.48.1 (#142) #213
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 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| SCCACHE_GHA_ENABLED: "true" | |
| RUSTC_WRAPPER: "sccache" | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Set up Rust | |
| run: rustup show | |
| - uses: mozilla-actions/[email protected] | |
| - run: cargo test | |
| working-directory: pyo3-polars | |
| - uses: taiki-e/install-action@cargo-hack | |
| - run: cargo hack test --each-feature | |
| working-directory: pyo3-polars | |
| - run: make install | |
| working-directory: example/extend_polars_python_dispatch | |
| - run: venv/bin/python run.py | |
| working-directory: example/extend_polars_python_dispatch |