Skip to content

fix(setup): install clang-format #101

fix(setup): install clang-format

fix(setup): install clang-format #101

Workflow file for this run

name: 🔍 Check Formatting
on:
push:
pull_request:
workflow_dispatch:
jobs:
check-coding-style:
runs-on: ubuntu-latest
container: fedora:41
steps:
- name: 📥 Checkout
uses: actions/checkout@v4
- name: 🖥️ Setup Environment
uses: ./.github/actions/setup
with:
container: ubuntu-latest
install-vtk: true
- name: 📋 Install Dependencies
run: pip install -U cmakelang
- name: 🔍 Check Format
run: |
cmake -B build
cmake --build build --target format-check