From bc1b56ae867b79bac3571cce70b32e6b436103ce Mon Sep 17 00:00:00 2001 From: ladatz <105828115+ladatz@users.noreply.github.com> Date: Fri, 3 May 2024 08:52:09 -0400 Subject: [PATCH] Update security-audit.yml to build the test csproj for codeql (#74) * Update security-audit.yml to build the test csproj for codeql * Update security-audit.yml * Update security-audit.yml --- .github/workflows/security-audit.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/security-audit.yml b/.github/workflows/security-audit.yml index 3b23815..9ff9abc 100644 --- a/.github/workflows/security-audit.yml +++ b/.github/workflows/security-audit.yml @@ -61,6 +61,8 @@ jobs: with: languages: ${{ matrix.language }} - name: Build MQTT Connector's Azure Function - run: dotnet build cloud_connectors/resources/azure_function/src/function.csproj + run: | + dotnet build cloud_connectors/resources/azure_function/src/function.csproj + dotnet build cloud_connectors/resources/azure_function/tests/MQTTConnectorAzureFunction.Tests.csproj - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 \ No newline at end of file + uses: github/codeql-action/analyze@v2