name: "CodeQL" on: workflow_call: permissions: contents: read jobs: analyze: name: Analyze runs-on: ubuntu-latest timeout-minutes: 360 permissions: # required for all workflows security-events: write steps: - name: Checkout repository uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@1b168cd39490f61582a9beae412bb7057a6b2c4e # v4.31.8 with: languages: c-cpp - name: configure run: cmake -B build . -DKokkos_ENABLE_OPENMP=ON -DCMAKE_CXX_STANDARD=20 -DCMAKE_CXX_FLAGS=-Werror -DKokkos_ENABLE_COMPILER_WARNINGS=ON -DKokkos_ENABLE_DEPRECATED_CODE_4=OFF -DKokkos_ENABLE_TESTS=ON -DKokkos_ENABLE_EXAMPLES=ON -DKokkos_ENABLE_BENCHMARKS=ON -DCMAKE_BUILD_TYPE=Debug - name: build run: cmake --build build --parallel 2 - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@1b168cd39490f61582a9beae412bb7057a6b2c4e # v4.31.8 with: category: "/language:c-cpp"