Skip to content

Commit

Permalink
add pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
kdomino committed Oct 4, 2023
1 parent 6a34315 commit dfae6ad
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Pylint

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make init
- name: Analysing the code with pylint
run: |
make lint

0 comments on commit dfae6ad

Please sign in to comment.