This repository was archived by the owner on Apr 16, 2026. It is now read-only.
HOTFIX some bugs found during the installation #1279
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 check | |
| on: [push, pull_request] | |
| jobs: | |
| formatting-check: | |
| name: Formatting check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run clang-format style check for C/C++ programs. | |
| uses: jidicula/clang-format-action@v4.14.0 | |
| with: | |
| clang-format-version: '19' | |
| check-path: 'src' | |