Merge pull request #7 from TacticalTrainingTeam/cleanup #34
This file contains hidden or 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: Validate | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the source code | |
| uses: actions/checkout@v6 | |
| - name: Validate Config | |
| run: python tools/config_style_checker.py | |
| - name: Validate Stringtables | |
| run: python3 tools/stringtable_validator.py | |
| - name: Check for BOM | |
| uses: arma-actions/bom-check@master | |
| with: | |
| path: "addons" |