Skip to content

feat: Add README for study directory. #5

feat: Add README for study directory.

feat: Add README for study directory. #5

Workflow file for this run

name: Ruff Lint & Format
on: [push, pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
defaults:
run:
working-directory: act_operator
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: "3.11"
enable-cache: true
cache-suffix: "ruff"
- name: Install dependencies (dev)
run: uv sync --group lint
- name: Ruff Lint Check
run: uv run ruff check .
- name: Ruff Format Check
run: uv run ruff format . --check