zdoom-macos-deps/.github/workflows/lint.yml

22 lines
434 B
YAML
Raw Normal View History

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 .