Skip to content

Test with newest Black #1110

Test with newest Black

Test with newest Black #1110

Workflow file for this run

---
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: akaihola/bandit-report-artifacts@use-config
with:
project_path: .
config_file: ./.bandit.code.yaml
- name: Bandit security check for tests
uses: akaihola/bandit-report-artifacts@use-config
with:
project_path: ./src/darker/tests
config_file: ./.bandit.tests.yaml
- name: Bandit security check for GitHub Action `main.py` tests
uses: akaihola/bandit-report-artifacts@use-config
with:
project_path: ./action/tests
config_file: ./.bandit.tests.yaml