This repository was archived by the owner on May 7, 2026. It is now read-only.
test(wren-core): add tests for analyze_with_url_tables and dequote_identifier #472
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: Core Python CI | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| pull_request: | |
| paths: | |
| - 'wren-core-py/**' | |
| - 'wren-core/**' | |
| defaults: | |
| run: | |
| working-directory: wren-core-py | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.11 | |
| - name: Cache Cargo | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/bin/ | |
| ~/.cargo/registry/index/ | |
| ~/.cargo/registry/cache/ | |
| ~/.cargo/git/db/ | |
| ./wren-core-py/target/ | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Install poetry | |
| run: pipx install poetry | |
| - name: Install dependencies | |
| run: poetry install --no-root | |
| - name: Test Rust and Python code | |
| run: | | |
| cargo test | |
| poetry run maturin develop | |
| poetry run pytest |