summaryrefslogtreecommitdiff
path: root/.github/workflows/uvim-codeql.yml
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 20:38:37 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 20:38:37 +0300
commit25a9943d68a7dc31eeefeb17913dbe37d87e5302 (patch)
tree540166d548cafc56726a07225f2dbe649c8e2444 /.github/workflows/uvim-codeql.yml
parenta4b5ffbaadb591066e2a97f8d450fb1d93e56a6e (diff)
downloadProject-Tick-25a9943d68a7dc31eeefeb17913dbe37d87e5302.tar.gz
Project-Tick-25a9943d68a7dc31eeefeb17913dbe37d87e5302.zip
NOISSUE Remove not needed CI workflows for GitHub Actions and reworked some workflows
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to '.github/workflows/uvim-codeql.yml')
-rw-r--r--.github/workflows/uvim-codeql.yml49
1 files changed, 49 insertions, 0 deletions
diff --git a/.github/workflows/uvim-codeql.yml b/.github/workflows/uvim-codeql.yml
new file mode 100644
index 0000000000..a2ebb3835f
--- /dev/null
+++ b/.github/workflows/uvim-codeql.yml
@@ -0,0 +1,49 @@
+name: "uvim: CodeQL"
+
+on:
+ push:
+ branches: [master]
+ paths:
+ - 'uvim/**'
+ pull_request:
+ branches: [master]
+ paths:
+ - 'uvim/**'
+ schedule:
+ - cron: '0 18 * * 1'
+
+concurrency:
+ group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
+ cancel-in-progress: true
+
+permissions:
+ contents: read
+
+jobs:
+ analyze:
+ permissions:
+ contents: read
+ security-events: write
+
+ name: Analyze
+ runs-on: ubuntu-latest
+
+ strategy:
+ fail-fast: false
+ matrix:
+ language: ['cpp', 'python']
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v6
+
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v4
+ with:
+ languages: ${{ matrix.language }}
+
+ - name: Autobuild
+ uses: github/codeql-action/autobuild@v4
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v4