From 0c07176401736c10e9c70f19d82ff231eab56969 Mon Sep 17 00:00:00 2001 From: Hari Rana Date: Wed, 18 Dec 2024 19:25:51 -0500 Subject: [PATCH] ci: Remove pylint-checker.yml --- .github/workflows/pylint-checker.yml | 37 ---------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/pylint-checker.yml diff --git a/.github/workflows/pylint-checker.yml b/.github/workflows/pylint-checker.yml deleted file mode 100644 index b76c5840fc7..00000000000 --- a/.github/workflows/pylint-checker.yml +++ /dev/null @@ -1,37 +0,0 @@ -on: - pull_request: -name: Pylint - checker -jobs: - pylint-checker: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Set up Python 3.10 - uses: actions/setup-python@v5 - with: - python-version: "3.10" - - name: Install Ubuntu dependencies - run: | - sudo apt update - sudo apt install -y libgirepository1.0-dev gcc libcairo2-dev pkg-config python3-dev gir1.2-gtk-3.0 - sudo apt install -y libcurl4-openssl-dev libssl-dev - - name: Install Python dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install -r requirements.dev.txt - - name: Analysing the code with pylint - id: pylint-result - continue-on-error: true - run: | - pylint --version - mkdir -p output - python3 utils/pylint-parser.py > output/pylint-result - cat output/pylint-result - echo ${{ github.event.number }} > output/pr-number - - uses: actions/upload-artifact@v4 - with: - name: pylint-result - path: output/