Delete Recent_Detections.md #95
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: | |
| - '**.toml' | |
| workflow_dispatch: | |
| jobs: | |
| elastic-detections-all: | |
| runs-on: ubuntu-latest | |
| env: | |
| ELASTIC_KEY: ${{ secrets.ELASTIC_KEY }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.14.3 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.14.3' | |
| - run: pip install requests | |
| - run: python development/validation.py | |
| - run: python development/mitre.py |