build(deps): bump pypa/gh-action-pypi-publish from 1.13.0 to 1.14.0 (… #223
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: [push, pull_request] | |
| jobs: | |
| ubuntu: | |
| name: Unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout editdistpy | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: pyproject.toml | |
| - name: Setup virtual environment | |
| run: uv venv | |
| - name: Build editdistpy | |
| uses: ./.github/actions/build_editdistpy | |
| - name: Test | |
| run: | | |
| uv sync --no-editable | |
| uv run pytest |