Skip to content

Commit

Permalink
Update codeql-analysis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
daalcant committed May 20, 2020
1 parent 3c4b51a commit 6edb1fa
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ name: "Code Scanning - Application Inspector"

on:
push:
paths:
- AppInspector/*
- AppInspector.CLI/*
- MultiExtractor/*
- RulesEngine/*
schedule:
- cron: '0 7 * * 5'

Expand All @@ -29,11 +24,29 @@ jobs:
with:
languages: javascript, csharp

- name: Build Application Inspector
- name: Build Application Inspector Commands
run: |
dotnet restore
dotnet build AppInspector.Commands.csproj -c Release
working-directory: ./AppInspector

- name: Build Application Inspector CLI
run: |
dotnet restore
dotnet build AppInspector.CLI.csproj -c Release
working-directory: ./AppInspector.CLI

- name: Build RulesEngine
run: |
dotnet restore
dotnet build AppInspector.RulesEngine.csproj -c Release
working-directory: ./RulesEngine

- name: Build Tests
run: |
dotnet restore
dotnet build UnitTest.Commands.csproj
working-directory: ./UnitTest.Commands

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

0 comments on commit 6edb1fa

Please sign in to comment.