Skip to content

Docs/misc rephrasings #24

Docs/misc rephrasings

Docs/misc rephrasings #24

# This workflow will upload a Python Package to PyPI when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Trigger test on PR
on:
pull_request:
types: [opened, ready_for_review]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Build release distributions
run: uv build
- name: Run test suite
run: |
uv pip install pytest
uv pip install dist/*.whl
uv run pytest src/odl/test
env:
UV_SYSTEM_PYTHON: 1