fix(translator): % Split over a trait folds to FALSE without an identity context #61
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| ci: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| env: | |
| CLICKHOUSE_HOST: localhost | |
| CLICKHOUSE_PORT: "8123" | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - run: make lint | |
| - run: make typecheck | |
| - name: Start ClickHouse | |
| run: docker compose up --detach --wait clickhouse | |
| - run: make test | |
| - name: Check Coverage | |
| uses: 5monkeys/cobertura-action@v14 | |
| with: | |
| minimum_coverage: 100 | |
| fail_below_threshold: true | |
| show_missing: true |