Implementation of endpoints to list, authorise and revoke authorisation from 3rd party tools #267
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: Run Static Application Security Testing | |
| on: [push, pull_request] | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| steps: | |
| - name: Perform Bandit Analysis | |
| uses: PyCQA/bandit-action@v1.0.1 | |
| with: | |
| configfile: "pyproject.toml" |