Skip to content

Commit 8bc2150

Browse files
authored
Add ruleset validator workflow
1 parent 74617a5 commit 8bc2150

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/validator.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Ruleset validator
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
types: [ready_for_review]
7+
release:
8+
types: [published]
9+
10+
jobs:
11+
validator:
12+
name: Ruleset validator
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 5
15+
steps:
16+
- uses: actions/checkout@v3
17+
with:
18+
ref: ${{ github.head_ref }}
19+
20+
- name: Validate ruleset
21+
uses: szepeviktor/[email protected]
22+
with:
23+
xml_ruleset: IxDFCodingStandard/ruleset.xml

0 commit comments

Comments
 (0)