mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 05:11:49 +00:00
23 lines
512 B
YAML
23 lines
512 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://ghcr.io/github/super-linter:slim-v4
|
|
env:
|
|
FILTER_REGEX_INCLUDE: .*/aedi/.*
|
|
VALIDATE_PYTHON_BLACK: false
|
|
VALIDATE_PYTHON_ISORT: false
|
|
DISABLE_ERRORS: true
|
|
|
|
- name: Bandit
|
|
run: |
|
|
pip3 install bandit
|
|
bandit --skip B101,B310,B404,B603,B607 --recursive .
|