Skip to content

Commit

Permalink
Vendor release-prep from centralized dbt-release, replace tox testing…
Browse files Browse the repository at this point in the history
… with spark repo testing (#997)

* vendor release-prep from centralized dbt-release, replace tox testing with spark repo testing

* replace dbt --version
  • Loading branch information
mikealfare authored Mar 2, 2024
1 parent 4803559 commit d568d21
Show file tree
Hide file tree
Showing 3 changed files with 655 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
mypy --version
python -m pip install -r requirements.txt
python -m pip install -r dev-requirements.txt
dbt --version
python -c "import dbt.adapters.spark"
- name: Run pre-commit hooks
run: pre-commit run --all-files --show-diff-on-failure
Expand Down Expand Up @@ -200,10 +200,10 @@ jobs:
find ./dist/*.whl -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/
- name: Check wheel distributions
run: |
dbt --version
python -c "import dbt.adapters.spark"
- name: Install source distributions
run: |
find ./dist/*.gz -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/
- name: Check source distributions
run: |
dbt --version
python -c "import dbt.adapters.spark"
Loading

0 comments on commit d568d21

Please sign in to comment.