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

Bump ruff from 0.6.3 to 0.7.4 #411

Bump ruff from 0.6.3 to 0.7.4

Bump ruff from 0.6.3 to 0.7.4 #411

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