feat(utils): Refactor macros to improve schema checks in mcr_dynamic_limit and mcr_source_or_ref #12
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: PR | |
| on: | |
| - pull_request | |
| concurrency: | |
| group: ${{ github.ref }}-pr | |
| cancel-in-progress: true | |
| permissions: | |
| id-token: write | |
| actions: read | |
| checks: read | |
| contents: read | |
| pull-requests: read | |
| statuses: write | |
| deployments: write | |
| jobs: | |
| run_tests: | |
| name: 🛠️Running tests | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build containers | |
| run: docker compose up -d | |
| - name: Run tests | |
| run: docker exec -i dbt python -m pytest -rA tests/pytest/ | |
| - name: Stop containers | |
| run: docker compose down |