-
Notifications
You must be signed in to change notification settings - Fork 492
32 lines (25 loc) · 883 Bytes
/
format-check.yml
File metadata and controls
32 lines (25 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Check Formatting
on: [pull_request]
jobs:
check_formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Python dependencies
run: |
python3 -m pip install --upgrade pip
pip install ruff==0.14.9 clang-format==19.1.7
- name: Check Python formatting and linting with ruff
run: |
ruff check areal/
ruff check examples/
ruff format --check areal/
ruff format --check examples/
- name: Check C++ formatting
run: |
find . -type f \( -name '*.c' -o -name '*.h' -o -name '*.cpp' -o -name '*.hpp' -o -name '*.cu' -o -name '*.cuh' \) -exec clang-format --dry-run --Werror {} +