Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 478 Bytes

File metadata and controls

24 lines (16 loc) · 478 Bytes

SRX Workflows

Repository of workflows for the SRX beamline.

Development

Pre-commit

This project uses pre-commit to maintain code quality. To install and run pre-commit locally:

# Install pre-commit hooks
pixi run pre-commit install

# Run on all files
pixi run pre-commit run --all-files

# Run on staged files only
pixi run pre-commit run

# Run on files changed in your branch (compared to main)
pixi run pre-commit run --from-ref main --to-ref HEAD