feat: import_stream internal method for Series to support Arrow C stream interface #1398
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: Check MSRV | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- src/rust/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- src/rust/** | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
test-min-rust-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: cargo-msrv | |
- name: Verify minimum rust version | |
run: cargo-msrv --path src/rust/ verify |