Fix typo in README description #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: secnode-api-pentest | |
| on: | |
| pull_request: | |
| jobs: | |
| security-scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Install SecNode | |
| run: pip install -r requirements.txt | |
| - name: Run SecNode Scan | |
| env: | |
| SECNODE_LLM: ${{ secrets.SECNODE_LLM }} | |
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
| run: python3 secnodeapi.py --target https://staging-api.example.com/swagger.json |