diff --git a/.github/workflows/check-tabs.yaml b/.github/workflows/check-tabs.yaml deleted file mode 100644 index 517187f..0000000 --- a/.github/workflows/check-tabs.yaml +++ /dev/null @@ -1,27 +0,0 @@ -name: Check tabs - -on: - pull_request: - branches: [master] - -jobs: - tablint: - runs-on: ubuntu-latest - name: Check tabs - steps: - - uses: actions/checkout@v4 - - name: Find tabs - run: | - ERRORS=0 - for f in $(git grep -Il '') - do - if grep -q -P '\t' $f; then - grep -nHP '\t' $f - ERRORS=1 - fi - done - - if [[ $ERRORS == 1 ]]; then - echo "Tabs found, see the output above. Please replace them with spaces." - exit 1 - fi