Add X11 Quickshell design-system foundation #150
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: ["main"] | |
| pull_request: | |
| schedule: | |
| - cron: "23 8 * * 1" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| security-events: write | |
| concurrency: | |
| group: codeql-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| container: fedora:44 | |
| steps: | |
| - name: Install checkout dependency | |
| run: dnf install -y --setopt=install_weak_deps=False git | |
| - uses: actions/checkout@v7 | |
| with: | |
| persist-credentials: false | |
| - name: Install build dependencies | |
| run: | | |
| dnf install -y --setopt=install_weak_deps=False \ | |
| gcc make pkgconf-pkg-config \ | |
| libX11-devel libXft-devel libXinerama-devel libXrender-devel \ | |
| imlib2-devel libxcb-devel xcb-util-devel \ | |
| fontconfig-devel freetype-devel | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4.37.4 | |
| with: | |
| languages: c-cpp | |
| build-mode: manual | |
| - name: Build | |
| run: scripts/run-tests make clean all | |
| - name: Analyze | |
| uses: github/codeql-action/analyze@v4.37.4 |