Merge pull request #2 from TerminalsandCoffee/codex/review-repository… #11
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: TOML/MITRE Validation | |
| on: | |
| push: | |
| path: | |
| - 'detections/**.toml' | |
| - '!**.yml' | |
| workflow_dispatch: | |
| jobs: | |
| toml-validation: | |
| if: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11.4' | |
| - run: pip install requests | |
| - run: python development/validation.py | |
| - run: python development/mitre.py |