From 7de82743ce4fd52ba5b400b38ea010db69431622 Mon Sep 17 00:00:00 2001 From: marcosmarxm Date: Thu, 25 Jul 2024 17:07:12 -0300 Subject: [PATCH] add pipeline --- .github/workflows/run_integration_tests.yml | 25 +++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/run_integration_tests.yml diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml new file mode 100644 index 00000000..388b9724 --- /dev/null +++ b/.github/workflows/run_integration_tests.yml @@ -0,0 +1,25 @@ +name: Run Integration Tests for Dbt Models + +on: + schedule: + - cron: "0 6 * * *" + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Install Python + uses: actions/setup-python@v4 + with: + python-version: 3.12 + + - name: Install poetry + uses: abatilo/actions-poetry@v2 + + - name: checkout + uses: actions/checkout@v2 + + - name: Get what connector we are testing