Merge pull request #305 from DataRecce/feature/drc-325-dbt-18-compati… #33
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: Run Smoke Test (SQLMesh) | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "recce/**" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "recce/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
cache: "pip" # caching pip dependencies | |
- run: | | |
python -m pip install --upgrade pip | |
pip install sqlmesh | |
pip install . | |
- name: Run sqlmesh | |
run: | | |
./integration_tests/sqlmesh/prep_env.sh | |
- name: Run smoke test | |
run: | | |
./integration_tests/sqlmesh/test_server.sh |