Files
trigdx/.github/workflows/linting.yml
Bram Veenboer b129d9ffaf Update CI (#19)
2025-08-15 10:12:55 +02:00

16 lines
358 B
YAML

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