From c8a8560b0ed6b0aa54fa85106dbae4a9b34bbf2f Mon Sep 17 00:00:00 2001 From: Carlos Date: Wed, 9 Oct 2024 16:59:09 -0700 Subject: [PATCH] Create codeql-analysis.yml (#214) * Create codeql-analysis.yml - making the custom codeql file. * Update codeql-analysis.yml - trying pip install . * Update codeql-analysis.yml - no pip install reqs. * Update codeql-analysis.yml - ahh, can't isntall need venv ? * Update codeql-analysis.yml - need those quotes... --- .github/workflows/codeql-analysis.yml | 49 +++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 00000000..53fe0025 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,49 @@ +name: "CodeQL" + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + schedule: + - cron: '0 0 * * *' + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: [ 'c++' ] + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + + - name: Install Linux Dependencies + run: | + sudo apt-get update; + sudo apt-get install -y libsnmp-dev libperl-dev; + + - name: Set up Python 3.10 + uses: actions/setup-python@v5 + with: + python-version: "3.10" + + - name: Build Python Extension + run: | + pip install . + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 \ No newline at end of file