40 improve uninitialized variable analysis with byte range lattice and interprocedural function summaries #44
Workflow file for this run
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: clang-format | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| jobs: | |
| format-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install clang-format 20 | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y clang-format-20 | |
| sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-20 100 | |
| - name: Run format-check | |
| run: ./scripts/format-check.sh |