Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit d568d21

Browse files
authored
Vendor release-prep from centralized dbt-release, replace tox testing with spark repo testing (#997)
* vendor release-prep from centralized dbt-release, replace tox testing with spark repo testing * replace dbt --version
1 parent 4803559 commit d568d21

File tree

3 files changed

+655
-5
lines changed

3 files changed

+655
-5
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
mypy --version
6565
python -m pip install -r requirements.txt
6666
python -m pip install -r dev-requirements.txt
67-
dbt --version
67+
python -c "import dbt.adapters.spark"
6868
6969
- name: Run pre-commit hooks
7070
run: pre-commit run --all-files --show-diff-on-failure
@@ -200,10 +200,10 @@ jobs:
200200
find ./dist/*.whl -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/
201201
- name: Check wheel distributions
202202
run: |
203-
dbt --version
203+
python -c "import dbt.adapters.spark"
204204
- name: Install source distributions
205205
run: |
206206
find ./dist/*.gz -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/
207207
- name: Check source distributions
208208
run: |
209-
dbt --version
209+
python -c "import dbt.adapters.spark"

0 commit comments

Comments
 (0)