summaryrefslogtreecommitdiff
path: root/.github/workflows/codeql-analysis.yml
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2025-01-07 13:23:01 -0800
committerJussi Pakkanen <jpakkane@gmail.com>2025-01-08 00:40:36 +0200
commit5b3914629884c4e3977ed4c97323b5c5b4ce9563 (patch)
treed116bf716dd49c9a134a94f831b5588117bad4d8 /.github/workflows/codeql-analysis.yml
parentf782a1f118b19a90d100d25fa10391930cf39b3f (diff)
downloadmeson-5b3914629884c4e3977ed4c97323b5c5b4ce9563.tar.gz
CI: remove codeql
It rarely finds real issues that other scanners (pylint, flake8, mypy) don't find, and gives lots of useless and annoying errors that clutter discussions
Diffstat (limited to '.github/workflows/codeql-analysis.yml')
-rw-r--r--.github/workflows/codeql-analysis.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
deleted file mode 100644
index 6a78a36c6..000000000
--- a/.github/workflows/codeql-analysis.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: "CodeQL"
-
-on:
- push:
- branches: [ "master" ]
- pull_request:
- branches: [ "master" ]
-
-jobs:
- analyze:
- # lgtm.com does not run in forks, for good reason
- if: github.repository == 'mesonbuild/meson'
- name: Analyze
- runs-on: ubuntu-latest
- permissions:
- security-events: write
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v4
-
- - name: Initialize CodeQL
- uses: github/codeql-action/init@v3
- with:
- # bypass cache: https://github.com/github/codeql-action/issues/1445
- tools: linked
- config-file: .github/codeql/codeql-config.yml
- languages: python
- # we have none
-
- - name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze@v3