0.10.0 #18
Workflow file for this run
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
# GitHub Actions workflow to build, test and publish Python packages to PyPI everytime a new release is created. | |
name: Publish release | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
build: | |
name: Build package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# We use Python 3.8 here because it's the minimum Python version supported by this library. | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: pip install --upgrade pip build | |
- name: Build package | |
run: python -m build | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist_packages | |
path: dist/ | |
test: | |
# This job tests the built package by installing it via pip and running unit tests (without tox). | |
name: Test package | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Download build artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: dist_packages | |
path: dist/ | |
- name: Install built package with testing dependencies | |
run: pip install "$(find dist/ -name 'validataclass-*.whl')[testing]" | |
- name: Run unit tests | |
run: python -m pytest | |
publish: | |
name: Publish package | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download build artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: dist_packages | |
path: dist/ | |
- name: Upload package to GitHub release assets | |
uses: AButler/[email protected] | |
with: | |
files: dist/* | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish package to PyPI | |
uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |