chore: annotate types in some test helpers and fixtures #1692
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: Security check - Bandit | |
on: push # yamllint disable-line rule:truthy | |
jobs: | |
bandit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Bandit security check for code | |
uses: ioggstream/[email protected] | |
with: | |
project_path: . | |
config_file: ./.bandit.code.yaml | |
- name: Bandit security check for tests | |
uses: ioggstream/[email protected] | |
with: | |
project_path: ./src/darker/tests | |
config_file: ./.bandit.tests.yaml | |
- name: Bandit security check for GitHub Action `main.py` tests | |
uses: ioggstream/[email protected] | |
with: | |
project_path: ./action/tests | |
config_file: ./.bandit.tests.yaml |