diff options
Diffstat (limited to '.github/workflows/no-tabs.yml')
| -rw-r--r-- | .github/workflows/no-tabs.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/no-tabs.yml b/.github/workflows/no-tabs.yml new file mode 100644 index 000000000..3836b0eaa --- /dev/null +++ b/.github/workflows/no-tabs.yml @@ -0,0 +1,13 @@ +name: no-tabs +on: [pull_request] +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + no-tabs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v7 + - name: Check for tabs in C/C++ sources + run: ./scripts/check-no-tabs.sh |
