Skip to content

Use uvx in GitHub workflows. #359

Use uvx in GitHub workflows.

Use uvx in GitHub workflows. #359

Workflow file for this run

name: test
on:
push: # any branch
pull_request:
branches: [master]
jobs:
test-ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Type Checker
run: |
uvx mypy ptpython
- name: Code formatting
run: |
uvx ruff check .
uvx ruff format --check .
- name: Tests
run: |
uvx --with . pytest tests/
- name: Validate README.md
# Ensure that the README renders correctly (required for uploading to PyPI).
run: |
uv pip install readme_renderer
python -m readme_renderer README.rst > /dev/null