Skip to content

[Chore] Add smoke test ci workflow #11

[Chore] Add smoke test ci workflow

[Chore] Add smoke test ci workflow #11

Workflow file for this run

name: Run Smoke Test
on:
push:
branches:
- main
paths:
- "recce/**"
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install dbt-core dbt-duckdb
pip install '.'
- name: Run smoke test
run: |
./e2e-tests/smoke-test.sh
env:
PACKAGES_YAML: ${{ vars.PACKAGES_YAML }}
PR_URL: ${{ github.event.pull_request.html_url }}