Use sql
instead of compiled_code
within the default get_limit_sql
macro
#666
This file contains 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: Unit Tests | |
on: | |
push: | |
branches: | |
- "main" | |
- "*.latest" | |
pull_request: | |
workflow_dispatch: | |
permissions: read-all | |
# will cancel previous workflows triggered by the same event and for the same ref for PRs or same SHA otherwise | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ contains(github.event_name, 'pull_request') && github.event.pull_request.head.ref || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
unit: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup `hatch` | |
uses: dbt-labs/dbt-adapters/.github/actions/setup-hatch@main | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run unit tests | |
run: hatch run unit-tests | |
shell: bash |