[CUDA][HIP] Fix bug in guess local worksize funcs and improve local worksize guessing in HIP adapter #3874
Workflow file for this run
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
# Runs bandit security checker for code written in Python. | |
name: Bandit | |
on: [push, pull_request, workflow_dispatch] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
linux: | |
name: Bandit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone the git repo | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Install pip packages | |
run: pip install -r third_party/requirements.txt | |
# Scan is run only for the 'tools' folder. | |
- name: Run Bandit | |
run: | | |
bandit -r tools |