Skip to content

Commit 1dadc72

Browse files
Github action to check for whitespace violations (#2328)
Co-authored-by: MatthewDaggitt <matthewdaggitt@gmail.com>
1 parent da9a326 commit 1dadc72

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/whitespace.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Check whitespace
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- experimental
7+
pull_request:
8+
branches:
9+
- master
10+
- experimental
11+
merge_group:
12+
13+
jobs:
14+
check-whitespace:
15+
runs-on: ubuntu-latest
16+
steps:
17+
18+
- uses: actions/checkout@v4
19+
20+
- uses: andreasabel/fix-whitespace-action@v1

0 commit comments

Comments
 (0)