Skip to content

[pre-commit.ci] pre-commit autoupdate #83

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #83

Workflow file for this run

name: Python Package
on:
pull_request:
push:
branches:
- '*'
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
name: Wheel
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: 'recursive'
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Python packages
run: python -m pip install --upgrade pip setuptools build
- name: build
run: python -m build
- name: Store the packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist
test:
needs:
- build
runs-on: ubuntu-latest
name: Test Python ${{ matrix.python.version }}
strategy:
fail-fast: false
matrix:
python:
- {version: '3.11', wheel: 'cp311-cp311'}
- {version: '3.12', wheel: 'cp312-cp312'}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: remove code outside of wheel
run: rm -rf src
shell: bash
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python.version }}
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Install Python packages
run: python -m pip install --upgrade pip
- name: install built wheel
run: python -m pip install "$(ls dist/*.whl)[test]"
shell: bash
- name: run pytest
run: python -m pytest
pypi:
runs-on: 'ubuntu-latest'
needs:
- test
permissions:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Publish 📦 to TestPyPI
if: ${{ github.ref == 'refs/heads/main' }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
- name: Publish 📦 to PyPI
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: pypa/gh-action-pypi-publish@release/v1