This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
Bump typer from 0.12.3 to 0.13.0 #409
This file contains 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: Test Kraky | |
on: [pull_request] | |
jobs: | |
pytest: | |
name: Run tests | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
- name: Install test dependencies | |
run: uv pip install --system -r requirements/test-requirements.txt | |
- name: Run tox targets for ${{ matrix.python }} | |
run: uv run tox run -f py$(echo ${{ matrix.python }} | tr -d .) |