Skip to content

Commit a432f68

Browse files
Use CODEQL_RUNNER env var in integration tests
1 parent 2f98148 commit a432f68

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/integration-testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ jobs:
336336
- name: Build code
337337
run: |
338338
. ./codeql-runner/codeql-env.sh
339-
dotnet build
339+
$CODEQL_RUNNER dotnet build
340340
341341
- name: Run analyze
342342
run: |
@@ -372,7 +372,7 @@ jobs:
372372
shell: powershell
373373
run: |
374374
cat ./codeql-runner/codeql-env.sh | Invoke-Expression
375-
dotnet build
375+
$Env:CODEQL_RUNNER dotnet build
376376
377377
- name: Run analyze
378378
run: |
@@ -408,7 +408,7 @@ jobs:
408408
shell: bash
409409
run: |
410410
. ./codeql-runner/codeql-env.sh
411-
dotnet build
411+
$CODEQL_RUNNER dotnet build
412412
413413
- name: Run analyze
414414
run: |

0 commit comments

Comments
 (0)