Set up Pylint CI
This commit is contained in:
parent
f67b14f42b
commit
9623624880
1 changed files with 17 additions and 0 deletions
17
.github/workflows/pylint.yml
vendored
Normal file
17
.github/workflows/pylint.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: Pylint
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: "3.11"
|
||||
|
||||
- name: Analysing the code with pylint
|
||||
run: pylint histd
|
Loading…
Reference in a new issue