Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fabio/opencl ci draft bak #1092

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions .github/workflows/bandit.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# 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

jobs:
linux:
name: Bandit
runs-on: ubuntu-latest
steps:
- name: Clone the git repo
uses: actions/checkout@v3

- 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
## 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
#
#jobs:
# linux:
# name: Bandit
# runs-on: ubuntu-latest
#
# steps:
# - name: Clone the git repo
# uses: actions/checkout@v3
#
# - 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
Loading