Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.github: Use / as a file path separator #986

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: Pylint

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

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

- name: Checkout
Expand All @@ -23,13 +23,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install requests 'pylint<=3.2.7'

- 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')
Loading