-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (48 loc) · 1.26 KB
/
armarc.yml
File metadata and controls
50 lines (48 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: VphudRc
on:
push:
branches:
- rc2020
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v2
with:
ref: rc2020
- name: Validate SQF
run: python3 tools/sqf_validator.py
- name: Validate Config
run: python3 tools/config_style_checker.py
- name: Validate Stringtables
run: python3 tools/stringtable_validator.py
- name: Check Strings
run: python3 tools/check_strings.py
- name: Check for BOM
uses: arma-actions/bom-check@master
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v2
with:
ref: rc2020
- name: Lint (sqflint)
uses: arma-actions/sqflint@master
continue-on-error: true # No failure due to many false-positives
# build:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout the source code
# uses: actions/checkout@v2
# - name: Build using HEMTT
# uses: arma-actions/hemtt@master
# with:
# command: build --release --ci
# - name: Upload Artifact
# uses: actions/upload-artifact@v2-preview
# with:
# name: vphud-${{ github.sha }}-nobin
# path: master/vphud_*.zip