Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Bump mkdocs from 1.6.0 to 1.6.1 #407

Bump mkdocs from 1.6.0 to 1.6.1

Bump mkdocs from 1.6.0 to 1.6.1 #407

Workflow file for this run

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 .)