Merge pull request #740 from Afforix/loch-msvc #52
This file contains hidden or 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 | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| security-events: write | |
| jobs: | |
| CodeQL: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Enable parallel compilation | |
| run: echo "MAKEFLAGS=-j$(nproc)" >> $GITHUB_ENV | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| - name: Install Dependencies | |
| run: | | |
| sudo apt -qq update | |
| sudo apt install -y texlive-binaries texlive-metapost libproj-dev libshp-dev libwxgtk3.2-dev libvtk9-dev survex imagemagick ghostscript ninja-build gettext libfmt-dev catch2 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| - name: Autobuild | |
| uses: github/codeql-action/autobuild@v4 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 |