Merge pull request #84 from openedx/bmtcril/altinity_fixes #1
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
# Check documentation coverage | |
name: dbt Docs Coverage | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
DBT_PROFILES_DIR: ./.github/ | |
CLICKHOUSE_DB: "xapi" | |
CLICKHOUSE_USER: "ch_admin" | |
CLICKHOUSE_PASSWORD: "ch_password" | |
TUTOR_ROOT: ./.ci/ | |
jobs: | |
build: | |
name: Build docs and check coverage | |
runs-on: ubuntu-latest | |
permissions: | |
contents: "read" | |
id-token: "write" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11.x" | |
- name: Install dependencies | |
run: | | |
pip install tutor-contrib-aspects | |
pip install -r requirements.txt | |
dbt deps | |
- name: Initialize Open edX | |
continue-on-error: false | |
run: | | |
tutor plugins enable aspects | |
tutor config save | |
tutor local start ralph -d | |
tutor local do init-clickhouse | |
tutor local do alembic -c "upgrade head" | |
tutor local do dbt | |
tutor local do load-xapi-test-data | |
- name: Check dbt tests | |
run: | | |
dbt run | |
dbt test | |
- name: Check docs coverage | |
run: | | |
dbt run | |
dbt docs generate | |
dbt-coverage compute doc --cov-fail-under 1.0 |