limmat.toml 428 B

12345678910111213141516171819202122232425
  1. # Check that the formatting is correct
  2. [[tests]]
  3. name = "fmt"
  4. command = "cargo fmt --check"
  5. [[tests]]
  6. name = "typing"
  7. command = "mypy dulwich"
  8. [[tests]]
  9. name = "ruff-check"
  10. command = "ruff check ."
  11. [[tests]]
  12. name = "ruff-format"
  13. command = "ruff format --check ."
  14. [[tests]]
  15. name = "codespell"
  16. command = "codespell --config=.codespellrc ."
  17. # Validate disperse config
  18. [[tests]]
  19. name = "disperse"
  20. command = "disperse validate"