We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74fe7d0 commit b70921eCopy full SHA for b70921e
.github/workflows/pr_push.yml
@@ -48,6 +48,31 @@ jobs:
48
- name: Build
49
run: >
50
cmake --build ${{github.workspace}}/build --config Release -j ${{matrix.nproc}}
51
+
52
+ CodeStyle:
53
+ name: Coding style
54
+ runs-on: ubuntu-latest
55
56
+ steps:
57
+ - name: Checkout repository
58
+ uses: actions/checkout@v4
59
60
+ - name: Install apt packages
61
+ run: |
62
+ sudo apt-get update
63
+ sudo apt-get install -y cmake clang-format-15
64
65
+ - name: Configure CMake
66
+ run: >
67
+ cmake
68
+ -B ${{github.workspace}}/build
69
+ -DUMF_FORMAT_CODE_STYLE=ON
70
71
+ - name: Build
72
73
+ cmake --build build --target clang-format-check
74
75
76
Spellcheck:
77
uses: oneapi-src/unified-memory-framework/.github/workflows/spellcheck.yml@main
78
Build:
0 commit comments