Skip to content

Set up trusted publishing to pypi #634

Set up trusted publishing to pypi

Set up trusted publishing to pypi #634

Workflow file for this run

name: Run tests
on: [pull_request]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install pandoc
run: sudo apt-get update && sudo apt-get install -y pandoc
- name: Install tox
run: pip install tox tox-gh-actions
- name: Test with tox
run: tox