We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53fadff commit 6e66472Copy full SHA for 6e66472
1 file changed
.github/workflows/shiftleft-analysis.yml
@@ -17,6 +17,15 @@ jobs:
17
# 2. Compile or build the project before invoking scan
18
# Example: mvn compile, or npm install or pip install goes here
19
# 3. Invoke Scan with the github token. Leave the workspace empty to use relative url
20
+ - name: Setup .NET Core
21
+ uses: actions/setup-dotnet@v1
22
+ with:
23
+ dotnet-version: 3.1.301
24
+ - name: Install dependencies
25
+ run: dotnet restore
26
+ - name: Build
27
+ run: dotnet build --configuration Release --no-restore
28
+ # End .NET Core setup steps
29
30
- name: Perform Scan
31
uses: ShiftLeftSecurity/scan-action@master
0 commit comments