Skip to content

Commit

Permalink
Create pylint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aloys-bernard-artefact authored Feb 4, 2025
1 parent 7f5d151 commit 559df27
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Pylint

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python "3.10"
uses: actions/setup-python@v3
with:
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')

0 comments on commit 559df27

Please sign in to comment.