Skip to content

Bump version

Bump version #163

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: stage & preview workflow
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
publish_dev_build:
runs-on: ubuntu-latest
strategy:
matrix:
python-versions: [3.9]
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-versions }}
cache: 'pip'
- name: Install dependencies
run: |
sudo apt update && sudo apt install -y ghostscript
python -m pip install --upgrade pip
pip install pdm
pdm install -G:all
- name: Run Pytest
run:
pdm run pytest -sxv
- name: Build wheels and source tarball
run: |
pdm build
- name: Publish package distributions to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/