File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ kind : Under the Hood
2+ body : Running integration tests in CI
3+ time : 2026-01-07T15:53:18.336434-06:00
Original file line number Diff line number Diff line change 5151 - name : Run tests
5252 run : task test:unit
5353
54+ # runs the integration tests
55+ integration-test :
56+ name : Integration test
57+ runs-on : ubuntu-24.04
58+ permissions :
59+ contents : read
60+ needs :
61+ - check
62+ steps :
63+ - name : checkout code
64+ uses : actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955
65+ - name : setup python
66+ uses : ./.github/actions/setup-python
67+ id : setup-python
68+ - name : Install go-task
69+ run : sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
70+ - name : Run tests
71+ env :
72+ DBT_HOST : ${{ vars.DBT_HOST }}
73+ MULTICELL_ACCOUNT_PREFIX : ${{ vars.MULTICELL_ACCOUNT_PREFIX }}
74+ DBT_TOKEN : ${{ secrets.DBT_TOKEN }}
75+ DBT_ACCOUNT_ID : ${{ vars.DBT_ACCOUNT_ID }}
76+ DBT_PROD_ENV_ID : ${{ vars.DBT_PROD_ENV_ID }}
77+ DBT_DEV_ENV_ID : ${{ vars.DBT_DEV_ENV_ID }}
78+ DBT_USER_ID : ${{ vars.DBT_USER_ID }}
79+ run : task test:integration
80+
5481 # validates documentation is up to date
5582 validate-docs :
5683 name : Validate tool docs
You can’t perform that action at this time.
0 commit comments