Skip to content

[llmd] Work on xKS testing #1443

[llmd] Work on xKS testing

[llmd] Work on xKS testing #1443

Workflow file for this run

name: Ruff
on:
workflow_dispatch:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- name: Check out code
uses: actions/checkout@v5
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Lint with Ruff
run: ruff check projects/ bin/
- name: Check formatting with Ruff
run: ruff format --check projects/ bin/