Skip to content

ci(publish): release to PyPI without a credential to lose #1

ci(publish): release to PyPI without a credential to lose

ci(publish): release to PyPI without a credential to lose #1

Workflow file for this run

name: Python
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: Python ${{ matrix.python }}
strategy:
matrix:
python:
- '3.9'
- '3.12'
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install
run: pip install -e ".[dev]"
- name: Test
run: python -m pytest -q