Merge branch 'main' of github.com:Algebraic-Programming/hLLM #18
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: Checking Code Style | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| push: | |
| branches: [ "main" ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Updating Apt | |
| run: sudo apt update | |
| - name: Installing clang-tormat | |
| run: | | |
| python3 -m pip install 'clang-format==18.1.0' | |
| - name: Checking style | |
| run: | | |
| echo "Checking HiCR source and test formatting..." | |
| .build-tools/style/check-style.sh check include | |
| .build-tools/style/check-style.sh check tests | |
| .build-tools/style/check-style.sh check examples |