Skip to content

fix: unable to upload package to pypi #6

fix: unable to upload package to pypi

fix: unable to upload package to pypi #6

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
pull_request:
jobs:
tox:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install tox
run: uv tool install tox --with tox-uv
- name: Run tox (tests + lint)
run: tox -e py3,pep8