8000 Rm About HTML page, fix link on 404 page · cvat-ai/cvat@71d2d9c · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
8000

Documentation website: Change links for logo and About in the header #14909

Documentation website: Change links for logo and About in the header

Documentation website: Change links for logo and About in the header #14909

Workflow file for this run

name: Bandit
on: pull_request
jobs:
Linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: files
uses: tj-actions/changed-files@v45.0.8
with:
files: |
**/*.py
files_ignore: |
**/cvat-sdk/*
- name: Run checks
run: |
CHANGED_FILES="${{steps.files.outputs.all_changed_files}}"
if [[ ! -z $CHANGED_FILES ]]; then
pipx install bandit
echo "Bandit version: "$(bandit --version | head -1)
echo "The files will be checked: "$(echo $CHANGED_FILES)
bandit -a file --ini .bandit $CHANGED_FILES
else
echo "No files with the \"py\" extension found"
fi
0