CI-fix: Remove pip cache and install proper deps #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL Analysis" | |
on: | |
push: | |
branches: [ trunk ] | |
paths: | |
- '**.c' | |
- '**codeql.yml' | |
pull_request: | |
branches: [ trunk ] | |
paths: | |
- '**.c' | |
- '**codeql.yml' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: Install Dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y libgeany-dev libgtk-3-dev | |
pip install meson ninja | |
- name: Build Pinner | |
run: | | |
meson setup builddir | |
ninja -C builddir | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: 'cpp' # Use 'cpp' for C code analysis | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |