Skip to content

Commit

Permalink
OpenCL CI trial and error
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiomestre committed Oct 27, 2023
1 parent 3a3aae3 commit 217079d
Show file tree
Hide file tree
Showing 21 changed files with 469 additions and 418 deletions.
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

0 comments on commit 217079d

Please sign in to comment.