Skip to content

Commit 71e343f

Browse files
author
Sophia Tevosyan
committed
updating the codeQL yml in the same way
1 parent fba3454 commit 71e343f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/codeQL.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,12 @@ jobs:
5959
global-json-file: global.json
6060

6161
- name: Restore dependencies
62-
run: dotnet restore $solution
62+
run: |
63+
Get-ChildItem -Path src, test -Recurse -Filter *.csproj | ForEach-Object { dotnet restore $_.FullName }
6364
6465
- name: Build
65-
run: dotnet build $solution #--configuration $config #--no-restore -p:FileVersionRevision=$GITHUB_RUN_NUMBER -p:ContinuousIntegrationBuild=true
66+
run: |
67+
Get-ChildItem -Path src, test -Recurse -Filter *.csproj | ForEach-Object { dotnet build $_.FullName }
6668
6769
# Run CodeQL analysis
6870
- name: Perform CodeQL Analysis

0 commit comments

Comments
 (0)