Skip to content

Commit

Permalink
Add a pylint github workflow to prevent regressions in pylint clean f…
Browse files Browse the repository at this point in the history
…iles
  • Loading branch information
amilcarlucas authored and tridge committed Sep 30, 2024
1 parent 7ec4248 commit 8fb17b9
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Pylint

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.12"]
steps:

- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint __init__.py dialects\__init__.py dialects\v09\__init__.py dialects\v09\python2\__init__.py \
dialects\v10\__init__.py dialects\v10\python2\__init__.py dialects\v20\__init__.py \
examples\__init__.py generator\__init__.py tests\test_mavxml.py tools\__init__.py \
mavftp.py mavftp_op.py examples\mavftp_example.py examples\status_msg.py tests\test_mavftp.py \
tests\test_mavxml.py
# $(git ls-files '*.py')

0 comments on commit 8fb17b9

Please sign in to comment.