Delete .github/workflows/codeql.yml

This commit is contained in:
Aren Elchinyan 2025-01-12 19:28:20 +03:00 committed by GitHub
parent 3f476fd555
commit 9768109f68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,41 +0,0 @@
name: CodeQL C/C++
permissions:
contents: read
actions: read
security-events: write
on:
workflow_dispatch:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt update
sudo apt install -y gcc build-essential grub2-common grub-pc xorriso qemu-system-x86 mtools cpio
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: c-cpp
build-mode: manual
- name: Build with CodeQL
run: |
make clean
make
- name: Run Tests
run: make test
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3