Skip to content
Merged
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
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,18 @@ jobs:
run: |
twine check dist/*

- name: Test installation and entry point
run: |
# 1. Install exactly what you just compiled (the wheel file)
python -m pip install dist/*.whl

# 2. Check that the command is available in the PATH and displays help
# If entry_points is set incorrectly, everything will fail here.
pgpro-pytest-html-merger --help

# 3. Checking the version
pgpro-pytest-html-merger --version

test:
runs-on: ubuntu-latest
needs: build-check
Expand Down