Spaces:
Runtime error
Runtime error
| name: SafeAIScan Worker | |
| on: | |
| repository_dispatch: | |
| types: [scan-repo] | |
| jobs: | |
| scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.9" | |
| - name: Install dependencies | |
| run: pip install -r requirements.txt | |
| - name: Run scan | |
| run: python worker.py |