37 lines
977 B
YAML
37 lines
977 B
YAML
name: Python Package
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
secrets:
|
|
PIPY_REPO_USER:
|
|
required: true
|
|
PIPY_REPO_PASS:
|
|
required: true
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
if: ${{ hashFiles("test/*.py") != '' }}
|
|
steps:
|
|
- name: Install test dependencies
|
|
run: pip install -y pytest
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: Build
|
|
run: python3 -m build
|
|
- name: Test
|
|
run: pyest test
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install build dependencies
|
|
run: pip install -y build twine
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
- name: Build
|
|
run: python3 -m build
|
|
- name: Publish
|
|
run: python3 -m twine upload --repository-url "https://gitea.example.com/api/packages/${{ secrets.PIPY_REPO_USER }}/pypi" -u ${{ secrets.PIPY_REPO_USER }} -p ${{ secrets.PIPY_REPO_PASS }} dist/*
|
|
|