chore: Adds the HEMTT build system to TMF #297
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Arma Tools Build | |
# Controls when the action will run. Triggers the workflow on pull request | |
# events but only for the master branch | |
on: | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@master | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
- name: Validate SQF | |
run: python3 tools/sqf_validator.py | |
- name: Check config style | |
run: python3 tools/config_style_checker.py |