fix false positive with noread fn calls with local block passed as input #1095
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: "Code Scanning - Action" | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '30 1 * * 0' | |
jobs: | |
CodeQL-Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt-get install z3 re2c ninja-build g++-10 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: cpp | |
- name: Compile | |
run: ./.github/scripts/build.sh | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
env: | |
CMAKE_BUILD_TYPE: Release | |
CMAKE_CXX_COMPILER: g++-10 |