Initialize CEditFormattedTextDisplay colour indices in constructor #115
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: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| schedule: | |
| - cron: '17 4 * * 1' | |
| jobs: | |
| analyze: | |
| name: Analyze (C/C++) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| build-essential autoconf \ | |
| libaspell-dev libbrotli-dev libfl-dev libfontconfig-dev \ | |
| libfreetype-dev libglib2.0-dev libkrb5-dev libldap-dev \ | |
| libpcre3-dev libsodium-dev libssl-dev libunistring-dev libxml2-dev \ | |
| libx11-dev libxext-dev libxft-dev libxpm-dev libzstd-dev \ | |
| pkg-config python3 unicode-cldr-core zlib1g-dev | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: c-cpp | |
| build-mode: manual | |
| config: | | |
| paths-ignore: | |
| - Libraries/JX | |
| - Libraries/vendor | |
| - Libraries/vzic | |
| - Libraries/include | |
| - Libraries/openssl | |
| - name: Build | |
| run: | | |
| autoconf | |
| ./configure | |
| make -j$(nproc) | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v4 | |
| with: | |
| category: "/language:c-cpp" |