Skip to content

Commit

Permalink
.github: Use / as a file path separator, install missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
amilcarlucas committed Oct 3, 2024
1 parent 8fb17b9 commit 1c0b25f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Pylint

on: [push]
on: [push, pull_request]

jobs:
build:
Expand All @@ -23,13 +23,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install requests pylint
- name: Analysing the code with pylint
- name: Analysing the code known to be pylint clean
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
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 1c0b25f

Please sign in to comment.