mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
♻️ try another linter
This commit is contained in:
parent
fec92a6c34
commit
49f9822b3f
1 changed files with 36 additions and 0 deletions
36
.github/workflows/linting_pr.yml
vendored
Normal file
36
.github/workflows/linting_pr.yml
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue