29 lines
546 B
YAML
29 lines
546 B
YAML
name: HEMTT
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the source code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Validate Config
|
|
run: python tools/config_style_checker.py
|
|
- name: Check for BOM
|
|
uses: arma-actions/bom-check@master
|
|
with:
|
|
path: "addons"
|
|
|
|
- name: Setup HEMTT
|
|
uses: arma-actions/hemtt@v1
|
|
- name: Run HEMTT check
|
|
run: hemtt check --pedantic
|