Skip to content

Test, build and deploy after release #6

Test, build and deploy after release

Test, build and deploy after release #6

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Test, build and deploy after release
on:
release:
types: [published]
jobs:
deploy:
name: Test and Build Python Release Package with Release Dependencies
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[minimal_requirements]
pip install .[dev]
pip install build
- name: Run checks with ruff
run: |
ruff check .
- name: Check if code is formatted correctly
run: |
ruff format . --check
- name: Run type checks with mypy
run: |
mypy
- name: Run tests with pytest
run: |
python -m pytest --pspec tests/
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution to PyPI (https://pypi.org/project/blue-prints)
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.BLUEPRINTS_PYPI_API_TOKEN }}