Complete the filesystem parity checklist: pipe_file, version-aware mode, and fsspec registry DX #3410
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: Test | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**.md' | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| permissions: | |
| id-token: write | |
| contents: read | |
| # Cancel superseded runs: overlapping runs stampede the account's Athena | |
| # concurrent-query quota (TooManyRequestsException) and fail each other. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| uses: ./.github/workflows/test-suite.yaml | |
| with: | |
| test-type: pyathena | |
| test-sqla: | |
| needs: [test] | |
| uses: ./.github/workflows/test-suite.yaml | |
| with: | |
| test-type: sqla | |
| test-sqla-async: | |
| needs: [test-sqla] | |
| uses: ./.github/workflows/test-suite.yaml | |
| with: | |
| test-type: sqla_async |