Bump chardet from 5.2.0 to 7.4.3 #55
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: transpile checks | |
| on: | |
| - pull_request | |
| jobs: | |
| # Unit tests for the transpiler. | |
| unit-tests: | |
| name: Transpile unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install locked dependencies | |
| run: pip install -r requirements-lock.txt | |
| - name: Install package | |
| run: pip install -e . --no-deps | |
| - name: Run transpiler unit tests | |
| run: pytest tests/test_transpile.py -q | |
| generated-up-to-date: | |
| name: Check cross-dialect concepts match BQ | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| checks: write | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install locked dependencies | |
| run: pip install -r requirements-lock.txt | |
| - name: Install package | |
| run: pip install -e . --no-deps | |
| - uses: ./.github/actions/transpile-concepts | |
| with: | |
| dialect: postgres | |
| - uses: ./.github/actions/transpile-concepts | |
| with: | |
| dialect: duckdb | |
| - uses: ./.github/actions/check-concepts-up-to-date | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |