Skip to content

Merge branch 'main' of github.com:Algebraic-Programming/hLLM #18

Merge branch 'main' of github.com:Algebraic-Programming/hLLM

Merge branch 'main' of github.com:Algebraic-Programming/hLLM #18

Workflow file for this run

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