From b789dda7c925b910bc3d739119fd3e54fb4e7adc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Wi=C4=85cek?= Date: Mon, 9 Sep 2024 22:46:56 +0200 Subject: [PATCH] Remove redundant check --- .github/workflows/check-tabs.yaml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/check-tabs.yaml 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