mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-14 16:31:30 +00:00
6e25af3d67
disable failure on errors as temporal solution
21 lines
434 B
YAML
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 .
|