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 17f3784 commit 7fbb003Copy full SHA for 7fbb003
.github/workflows/code-quality.yml
@@ -29,6 +29,11 @@ jobs:
29
- name: Checkout repository
30
uses: actions/checkout@v3
31
32
+ # Install libcurl dependency
33
+ - name: Install dependencies
34
+ run: sudo apt install -y libcurl4-openssl-dev
35
+
36
37
# Initializes the CodeQL tools for scanning.
38
- name: Initialize CodeQL
39
uses: github/codeql-action/init@v2
@@ -44,7 +49,7 @@ jobs:
44
49
45
50
- run: |
46
51
echo "Run, CMake build script"
47
- cmake -B ${{github.workspace}}/build -DBUILD_SHARED_LIBS=ON -DBUILD_TESTING=OFF
52
+ cmake -B ${{github.workspace}}/build -DBUILD_SHARED_LIBS=ON -DBUILD_TESTING=OFF
48
53
54
- name: Perform CodeQL Analysis
55
uses: github/codeql-action/analyze@v2
0 commit comments