-
Notifications
You must be signed in to change notification settings - Fork 1
30 lines (26 loc) · 793 Bytes
/
main.yml
File metadata and controls
30 lines (26 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: CI
on: [push]
jobs:
build:
runs-on: [windows-latest]
steps:
- uses: actions/checkout@v1
- name: Run a one-line script
run: echo Hello, world!
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: restore nugets
working-directory: src
run: msbuild -t:restore WinKernelObjectsDotNet\WinKernelObjectsDotNet.csproj
- name: build project
working-directory: src
run: msbuild WinKernelObjectsDotNet\WinKernelObjectsDotNet.csproj
- name: Upload artifact
uses: actions/upload-artifact@v4.0.0
with:
name: upload debug-build artifacts
path: src\WinKernelObjectsDotNet\bin\Debug\
- name: Run a multi-line script
run: |
echo "completely done"
echo the ende