forked from travisdesell/exact
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (38 loc) · 1.02 KB
/
clang_format.yml
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
33
34
35
36
37
38
name: clang-format Check
on: [push, pull_request]
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
path:
- check: 'common'
exclude: ''
- check: 'examm'
exclude: ''
- check: 'mpi'
exclude: ''
- check: 'multithreaded'
exclude: ''
- check: 'rnn'
exclude: ''
- check: 'rnn_examples'
exclude: ''
- check: 'rnn_tests'
exclude: ''
- check: 'time_series'
exclude: ''
- check: 'weights'
exclude: ''
- check: 'word_series'
exclude: ''
steps:
- uses: actions/checkout@v3
- name: Run clang-format style check for C/C++/Protobuf programs.
uses: jidicula/clang-format-action@v4.10.1
with:
clang-format-version: '15'
check-path: ${{ matrix.path['check'] }}
exclude-regex: ${{ matrix.path['exclude'] }}