Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pyyaml_include, pg binaries, pip install test #451

Merged
merged 10 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions .github/workflows/pip_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Test pip install

on:
workflow_dispatch:
pull_request:

jobs:
build:
name: PIP Install
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v3

- name: Install Poetry
run: pipx install poetry

- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
cache: "poetry"

- name: run Pre-Commit
uses: pre-commit/[email protected]

- name: Build dbt-coves using Poetry
run: |
poetry build

- name: Discover .whl file
id: discover_whl
run: |
ls dist/*.whl | grep -E "dbt_coves-[0-9]+\.[0-9]+\.[0-9]+-py3-none-any\.whl" | head -n 1 > whl_file.txt

- name: Extract .whl file name
id: extract_whl_name
run: |
WHL_FILE=$(cat whl_file.txt)
echo "::set-output name=whl_file::$WHL_FILE"

- name: pip install dbt-coves
run: |
WHL_FILE_PATH=${{ steps.extract_whl_name.outputs.whl_file }}
pip install $WHL_FILE_PATH
Loading
Loading