Update CI (#19)

This commit is contained in:
Bram Veenboer
2025-08-15 10:12:55 +02:00
committed by GitHub
parent 428f60f6d6
commit b129d9ffaf
2 changed files with 23 additions and 13 deletions

15
.github/workflows/linting.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
name: linting
on:
push:
jobs:
format:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: sudo apt-get update
- run: sudo apt-get install -y clang-format-14 cmake-format pre-commit
- run: pre-commit run -a