We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e91e463 commit 24ec1deCopy full SHA for 24ec1de
1 file changed
.github/workflows/validate.yml
@@ -0,0 +1,21 @@
1
+name: Validation
2
+
3
+on:
4
+ push:
5
+ branches: [ master, v5.X.X ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - uses: actions/setup-python@v1
16
+ with:
17
+ python-version: '3.4'
18
+ - name: Validate SQF
19
+ run: python ./tools/sqf_validator.py
20
+ - name: Validate Configs
21
+ run: python ./tools/config_style_checker.py
0 commit comments