mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
77ee4965ea
the following tests are disabled [B101:assert_used] Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. [B404:blacklist] Consider possible security implications associated with subprocess module. [B603:subprocess_without_shell_equals_true] subprocess call - check for execution of untrusted input. [B607:start_process_with_partial_path] Starting a process with a partial executable path https://bandit.readthedocs.io/ [skip ci]
18 lines
340 B
YAML
18 lines
340 B
YAML
name: Lint
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
linter:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Super-Linter
|
|
uses: docker://github/super-linter:v2.1.0
|
|
|
|
- name: Bandit
|
|
run: |
|
|
pip3 install bandit
|
|
bandit --skip B101,B310,B404,B603,B607 --recursive .
|