summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-04-04 20:34:22 +0200
committerGitHub <noreply@github.com>2024-04-04 20:34:22 +0200
commit3099c96ab7db359da335636bbfcc33c4d6f6e249 (patch)
tree03568ba4ce862e860aced9ebe65919a4293a4f78 /.github
parenteedc83e8a5532713d274439254b135c232a99a35 (diff)
parentfaa153524f04ebe8ab5f12d7afe6df2a6eb3728a (diff)
downloadvyos-1x-3099c96ab7db359da335636bbfcc33c4d6f6e249.tar.gz
vyos-1x-3099c96ab7db359da335636bbfcc33c4d6f6e249.zip
Merge pull request #3246 from c-po/spring-cleaning-2
T6199: drop unused Python imports from graphql source
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/unused-imports.yml39
1 files changed, 15 insertions, 24 deletions
diff --git a/.github/workflows/unused-imports.yml b/.github/workflows/unused-imports.yml
index 83098ddf6..e716a9c01 100644
--- a/.github/workflows/unused-imports.yml
+++ b/.github/workflows/unused-imports.yml
@@ -1,29 +1,20 @@
name: Check for unused imports using Pylint
-on:
- pull_request_target:
- types: [opened, reopened, ready_for_review, locked]
+on: push
+ # pull_request_target:
+ # types: [opened, reopened, ready_for_review, locked]
jobs:
- build:
+ Check-Unused-Imports:
runs-on: ubuntu-latest
- strategy:
- matrix:
- python-version: ["3.11"]
steps:
- - uses: actions/checkout@v3
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v3
- 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: |
- tmp=$(git ls-files *.py | xargs pylint | grep W0611 | wc -l)
- if [[ $tmp -gt 0 ]]; then
- echo "Found $tmp occurrence of unused Python import statements!"
- exit 1
- fi
- exit 0
+ - uses: actions/checkout@v3
+ - name: Set up Python
+ uses: actions/setup-python@v3
+ with:
+ python-version: 3.11
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ pip install pylint
+ - name: Analysing the code with pylint
+ run: make unused-imports