fix: stream records lazily in write_records and _execute_chunk_v2 #442
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: Python SDK Lint | |
| on: | |
| push: | |
| branches: [develop, master] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| with: | |
| persist-credentials: false | |
| - uses: ./.github/actions/setup-sdk-environment | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| deps-group: lint | |
| - name: Verify uv.lock is up-to-date | |
| run: uv lock --check | |
| - name: Verify files are linted and formatted | |
| run: make ci-lint |