feat(expr-ir): Add read_{csv,parquet}
#7012
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: Type checking | |
| on: | |
| pull_request: | |
| env: | |
| PY_COLORS: 1 | |
| jobs: | |
| typing: | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| activate-environment: true | |
| enable-cache: "true" | |
| cache-suffix: typing-${{ matrix.python-version }} | |
| cache-dependency-glob: "pyproject.toml" | |
| - name: Create venv | |
| run: uv venv .venv | |
| - name: install-reqs | |
| # TODO: add more dependencies/backends incrementally | |
| run: uv pip install -e ".[pyspark]" --group core --group typing-ci | |
| - name: show-deps | |
| run: uv pip freeze | |
| - name: Run mypy and pyright | |
| run: make typing | |
| - name: Run pyright type completeness | |
| run: | | |
| uv pip install -U pyright-cov | |
| pyright-cov --verifytypes narwhals --ignoreexternal --fail-under 100 |