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 4fff354 commit 0c5c30aCopy full SHA for 0c5c30a
.github/workflows/macos-scan-build.yml
@@ -0,0 +1,23 @@
1
+name: Mac OS X scan-build
2
+
3
+on:
4
+ push:
5
+ branches: [ macos-scan-build ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: macos-11
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: cmake
17
+ run: |
18
+ rm -rf ${{ github.workspace }}/build
19
+ /usr/local/opt/llvm/bin/scan-build cmake -B ${{ github.workspace }}/build -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}
20
+ - name: make
21
22
+ cd ${{ github.workspace }}/build
23
+ /usr/local/opt/llvm/bin/scan-build --exclude src/simdjson --status-bugs make -j
0 commit comments