aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2022-10-29 19:42:10 +0200
committerGitHub <noreply@github.com>2022-10-29 10:42:10 -0700
commit1d625a3cf794f49661af3f0d7cdb80c11d35c807 (patch)
tree24a30f222bdbfe364984bc82002796345a1662ca /.github/workflows
parent6884f017b53369d6c9b06ddd3aedeb642dbd24a8 (diff)
downloadrneovim-1d625a3cf794f49661af3f0d7cdb80c11d35c807.tar.gz
rneovim-1d625a3cf794f49661af3f0d7cdb80c11d35c807.tar.bz2
rneovim-1d625a3cf794f49661af3f0d7cdb80c11d35c807.zip
build: remove python linting #20851
This includes both the `lintpy` make target and for CI. We're actively trying to reduce our python usage, so this only seems to give warnings for unimportant things such as exceeding the line after deleting python code.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml5
-rw-r--r--.github/workflows/codeql-analysis.yml2
2 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7ada4f3f9e..08eeb614fc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -38,7 +38,6 @@ jobs:
automake \
build-essential \
cmake \
- flake8 \
gettext \
libluajit-5.1-dev \
libmsgpack-dev \
@@ -107,10 +106,6 @@ jobs:
run: make lintlua
- if: "!cancelled()"
- name: lintpy
- run: make lintpy
-
- - if: "!cancelled()"
name: lintsh
run: make lintsh
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index d0f04553f2..6ba0d43fe0 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- language: [ 'cpp', 'python' ]
+ language: [ 'cpp' ]
steps:
- name: Checkout repository