We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 95e29f8 + 8a9e128 commit 8a7c8d9Copy full SHA for 8a7c8d9
2 files changed
.github/workflows/dotnet-core.yml
@@ -32,6 +32,9 @@ jobs:
32
- name: Build
33
run: cd src && dotnet build --configuration Release --no-restore
34
35
+ - name: Security Code Scan
36
+ run: cd src && ./run-security-code-scan.sh
37
+
38
- name: Linting code with dotnet-format
39
run: cd src && ./run-dotnet-format.sh
40
src/run-security-code-scan.sh
@@ -0,0 +1,5 @@
1
+#!/bin/sh
2
+set -e
3
4
+dotnet tool update security-scan
5
+dotnet security-scan ./ByteDecoder.Common.sln
0 commit comments