check-format.yaml 613 B

123456789101112131415161718192021222324252627
  1. name: Check Code Formatting 🛠️
  2. on:
  3. workflow_call:
  4. jobs:
  5. clang-format:
  6. runs-on: ubuntu-24.04
  7. steps:
  8. - uses: actions/checkout@v4
  9. with:
  10. fetch-depth: 0
  11. - name: clang-format check 🐉
  12. id: clang-format
  13. uses: ./.github/actions/run-clang-format
  14. with:
  15. failCondition: error
  16. gersemi:
  17. runs-on: ubuntu-24.04
  18. steps:
  19. - uses: actions/checkout@v4
  20. with:
  21. fetch-depth: 0
  22. - name: gersemi Check 🎛️
  23. id: gersemi
  24. uses: ./.github/actions/run-gersemi
  25. with:
  26. failCondition: error