Skip to content

Update instructions and add uv support (#171) #77

Update instructions and add uv support (#171)

Update instructions and add uv support (#171) #77

Workflow file for this run

name: Ruff
on:
push:
branches:
- master
paths:
- ".github/workflows/ruff.yml"
- "**.py"
- "pyproject.toml"
- "requirements.txt"
pull_request:
paths:
- ".github/workflows/ruff.yml"
- "**.py"
- "pyproject.toml"
- "requirements.txt"
# https://github.com/chartboost/ruff-action
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Ruff lint
uses: chartboost/ruff-action@v1
with:
args: check --verbose
- name: Ruff format
uses: chartboost/ruff-action@v1
with:
args: format --check --verbose