Skip to content

Commit 24ec1de

Browse files
authored
Move to GH Actions
1 parent e91e463 commit 24ec1de

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/validate.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Validation
2+
3+
on:
4+
push:
5+
branches: [ master, v5.X.X ]
6+
pull_request:
7+
branches: [ master, v5.X.X ]
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

Comments
 (0)