♻️ try another linter

This commit is contained in:
Ondrej Samohel 2023-05-04 12:19:49 +02:00
parent fec92a6c34
commit 49f9822b3f
No known key found for this signature in database
GPG key ID: 02376E18990A97C6

36
.github/workflows/linting_pr.yml vendored Normal file
View file

@ -0,0 +1,36 @@
name: 📇 Linting PR
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Black
uses: microsoft/action-python@0.6.3
with:
black: false
- name: Bandit
uses: microsoft/action-python@0.6.3
with:
bandit: true
- name: Pylint
uses: microsoft/action-python@0.6.3
with:
pylint: true
- name: Pyright
uses: microsoft/action-python@0.6.3
with:
pyright: true
- name: Flake8
uses: microsoft/action-python@0.6.3
with:
flake8: true