Cast large_string to string right before saving to Parquet. #663
Workflow file for this run
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: Tests and Linting | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| jobs: | |
| run-pre-commit: | |
| name: Run pre commit hooks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v3 | |
| - uses: pre-commit/action@v3.0.1 | |
| run-linting: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/linting | |
| run-tests: | |
| uses: ./.github/workflows/run-all-tests.yaml |