aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/pylint.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/pylint.yml')
-rw-r--r--.github/workflows/pylint.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml
deleted file mode 100644
index c6939b5..0000000
--- a/.github/workflows/pylint.yml
+++ /dev/null
@@ -1,28 +0,0 @@
-name: pylint
-
-on:
- push:
- branches: [ main ]
- pull_request:
- branches: [ main ]
-
-jobs:
- pylint:
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v3
- - name: Set up Python 3.8
- uses: actions/setup-python@v1
- with:
- python-version: 3.8
-
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- pip install pylint pylint-exit conan
-
- - name: Run pylint
- run: |
- pylint `find . -name '*.py'|xargs` || pylint-exit $?