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 892a69b commit 37bafb3Copy full SHA for 37bafb3
.github/workflows/codeql.yml
@@ -19,7 +19,7 @@ jobs:
19
strategy:
20
fail-fast: false
21
matrix:
22
- language: [ 'csharp', 'javascript-typescript' ]
+ language: [ 'csharp', 'javascript-typescript', 'python' ]
23
dot-version: ['3.1.x']
24
25
steps:
@@ -54,10 +54,8 @@ jobs:
54
- name: Display dotnet version
55
run: dotnet --version
56
57
- - name: Manually Set LD_LIBRARY_PATH
58
- run: |
59
- echo "/usr/lib/ssl" >> $GITHUB_ENV
60
- export LD_LIBRARY_PATH=/usr/lib/ssl:$LD_LIBRARY_PATH
+ - name: Set LD_LIBRARY_PATH for OpenSSL
+ run: echo "LD_LIBRARY_PATH=/usr/lib/ssl:$LD_LIBRARY_PATH" >> $GITHUB_ENV
61
62
- name: Run dotnet restore with verbose logging
63
run: dotnet restore --verbosity detailed
0 commit comments