We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aa2ad4 commit fd602c9Copy full SHA for fd602c9
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on:
4
+ # Trigger the workflow on push or pull requests, but only for the
5
+ # main branch
6
+ push:
7
+ branches:
8
+ - main
9
+ pull_request:
10
11
12
+ workflow_dispatch:
13
14
+jobs:
15
+ msbuild:
16
+ runs-on: 'windows-latest'
17
+ steps:
18
+ - name: Checkout open-sysmon-conf
19
+ uses: actions/checkout@v2
20
21
+ - name: Download Sysmon
22
+ run: Invoke-WebRequest http://live.sysinternals.com/tools/sysmon.exe -OutFile .\sysmon.exe
23
+ shell: powershell
24
25
+ - name: Run Sysmon
26
+ run: .\sysmon.exe -accepteula -i sysmonconfig-export.xml
27
0 commit comments