reusable-misspell-check.yml 527 B

12345678910111213141516171819202122
  1. name: Reusable - Misspell check
  2. on:
  3. workflow_call:
  4. jobs:
  5. misspell-check:
  6. runs-on: ubuntu-latest
  7. steps:
  8. - uses: actions/checkout@v4
  9. - name: Install misspell
  10. run: |
  11. curl -L -o install-misspell.sh \
  12. https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh
  13. sh ./install-misspell.sh
  14. - name: Run misspell
  15. run: |
  16. find . -type f \
  17. -not -path './licenses/*' \
  18. | xargs bin/misspell -error