Skip to content

Commit 1e74038

Browse files
erikzenkerkris-jusiak
authored andcommitted
feat: Add pph checker
Adds a github action which runs the pph script and checks if this introduces changes.
1 parent 1fd85ea commit 1e74038

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/pph-checker.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Pph Checker
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Run pph
17+
run: ./tools/pph.sh
18+
- name: Check diff
19+
run: git diff --exit-code

0 commit comments

Comments
 (0)