Add ISCIII Beacon Podman rootless deployment #1
Workflow file for this run
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: Dead code checks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| dead-code-detection: | |
| runs-on: ubuntu-latest | |
| env: | |
| TARGET_DIR: beacon | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: | | |
| pip install vulture | |
| - name: Check dead code | |
| run: python scripts/check_dead_code.py "$TARGET_DIR" |