Skip to content

14 add publish hook for a python pypi version of maven artifact zip directory structure and upload to pypi registry #77

14 add publish hook for a python pypi version of maven artifact zip directory structure and upload to pypi registry

14 add publish hook for a python pypi version of maven artifact zip directory structure and upload to pypi registry #77

Workflow file for this run

name: Build PyPI
on:
workflow_call:
workflow_dispatch:
push:
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 dev: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/