Mandiant v 1 1 #488
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: Run Legacy Validate on Contributions | |
on: | |
pull_request_target: | |
branches: | |
- contrib/** | |
jobs: | |
legacy_validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Setup Poetry | |
uses: Gr1N/setup-poetry@v9 | |
- name: Install Python Dependencies | |
run: poetry install --with github-actions | |
- name: Run legacy validate step | |
run: poetry run demisto-sdk validate -g --post-commit --graph --skip-pack-dependencies --run-old-validate --skip-new-validate |