diff options
| author | Philip Dubé <159546+serprex@users.noreply.github.com> | 2026-09-19 18:09:26 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-09-19 18:09:26 +0000 |
| commit | 5fee87c23ebcdf8cf11078a9ecaa6e474498787f (patch) | |
| tree | 49e91d845fac0bfb72f9e30aaf7a50029b7545c9 /.github/workflows | |
| parent | 27a66925bfa80cdff0583b9434657ed8842102db (diff) | |
Diffstat (limited to '.github/workflows')
| -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 |
