We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f1c41c commit 4c87f6bCopy full SHA for 4c87f6b
1 file changed
.github/workflows/style-check.yml
@@ -14,6 +14,7 @@ jobs:
14
git fetch origin ${{ github.event.pull_request.base.sha }}
15
git clang-format --diff ${{ github.event.pull_request.base.sha }} | tee diff.patch
16
! grep -q '^diff ' diff.patch
17
+
18
inlining-check:
19
runs-on: ubuntu-latest
20
name: Check inline keyword usage
@@ -22,3 +23,10 @@ jobs:
22
23
- run: sudo apt install clang-tools
24
- run: sh ./test/check_inline_specifier.sh .
25
26
+ clang-tidy-check:
27
+ name: Clang-tidy check (x86_64)
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - uses: actions/checkout@v6
31
+ - run: sudo apt install clang-tidy
32
+ - run: clang-tidy --checks='-*,modernize-type-traits' include/xsimd/xsimd.hpp --header-filter='.*' --extra-arg-before=-std=c++14 --extra-arg-before='-Iinclude' --extra-arg-before='-march=tigerlake'
0 commit comments