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 a03c893 commit 14fb183Copy full SHA for 14fb183
.github/workflows/sonarcube.yml
@@ -1,8 +1,8 @@
1
-name: Build
+name: Sonarcube Scan
2
on:
3
push:
4
branches:
5
- - main
+ - master
6
pull_request:
7
types: [opened, synchronize, reopened]
8
jobs:
@@ -23,10 +23,15 @@ jobs:
23
sudo apt-get update
24
sudo apt-get install -y libzmq3-dev libsqlite3-dev
25
26
+ - name: Install googletest
27
+ uses: Bacondish2023/setup-googletest@v1
28
+ with:
29
+ tag: 'release-1.14.0'
30
+
31
- name: Run Build Wrapper
32
run: |
33
mkdir build
- cmake -S . -B build -DBTCPP_UNIT_TESTS=OFF
34
+ cmake -S . -B build
35
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} cmake --build build/ --config Release
36
- name: SonarQube Scan
37
uses: SonarSource/sonarqube-scan-action@v4
0 commit comments