zdoom-macos-deps/.github/workflows/lint.yml
alexey.lysiuk 6e25af3d67 ci: update super-linter to the actual version
disable failure on errors as temporal solution
2021-07-25 13:36:50 +03:00

21 lines
434 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_EXCLUDE: .*/deps/.*
DISABLE_ERRORS: true
- name: Bandit
run: |
pip3 install bandit
bandit --skip B101,B310,B404,B603,B607 --recursive .