perf(rust, python): Speed up .is_in
and in
#1113
Workflow file for this run
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: Lint py-polars crate | |
on: | |
pull_request: | |
paths: | |
- crates/** | |
- py-polars/src/** | |
- py-polars/Cargo.toml | |
- .github/workflows/lint-py-polars.yml | |
push: | |
branches: | |
- main | |
paths: | |
- crates/** | |
- py-polars/src/** | |
- py-polars/Cargo.toml | |
- .github/workflows/lint-py-polars.yml | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint-py-polars: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: py-polars | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Rust | |
run: rustup component add rustfmt clippy | |
- name: Cache Rust | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: py-polars | |
save-if: ${{ github.ref_name == 'main' }} | |
- name: Run cargo fmt | |
run: cargo fmt --all -- --check | |
- name: Run clippy | |
run: cargo clippy -- -D warnings |