From 77fbd5beba0c1381909530c21d675473e8651d4c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 17 Sep 2025 07:43:37 +0530 Subject: [PATCH] Use CodeQL on github actions --- .github/workflows/codeql-analysis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 0af2d42ce..e4dcd4bae 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -31,6 +31,8 @@ jobs: os: macos-latest - language: go os: ubuntu-latest + - language: actions + os: ubuntu-latest runs-on: ${{ matrix.os }} env: @@ -47,6 +49,7 @@ jobs: fetch-depth: 2 - name: Install Go + if: matrix.language == 'c' || matrix.language == 'go' uses: actions/setup-go@v6 with: go-version-file: go.mod @@ -58,6 +61,7 @@ jobs: languages: ${{ matrix.language }} - name: Build kitty + if: matrix.language == 'c' || matrix.language == 'go' run: python3 .github/workflows/ci.py build - name: Perform CodeQL Analysis