Skip to content

Commit

Permalink
add threatcheck run test
Browse files Browse the repository at this point in the history
  • Loading branch information
checkymander committed Feb 16, 2024
1 parent cfaa20e commit 2a9db88
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/threatcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Agent Builds

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:
runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.X

- name: Test with ThreatCheck
if: matrix.os == 'windows-latest'
run: dotnet test Payload_Type\athena\athena\agent_code\Agent.sln /p:WindowsTest=True --logger "console;verbosity=normal"

0 comments on commit 2a9db88

Please sign in to comment.