fix: Use __package__ to determine execution start (#13) #15
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
name: Build PyPI | |
on: | |
push: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
linting: | |
name: Reuse linting job | |
uses: ./.github/workflows/lint.yml | |
build: | |
needs: linting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 #full history | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: pip install hatch | |
- name: Run unit and integrations tests | |
run: hatch run test:pytest --cov=reqstool-python-decorators --cov-report=xml --cov-report=html | |
- name: Build project | |
run: hatch build | |
# Upload artifacts for later use | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist/ |