We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71c3885 commit 442a0d6Copy full SHA for 442a0d6
.github/workflows/ci.yml
@@ -0,0 +1,36 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - develop
8
+ - 'release/**'
9
+ pull_request:
10
11
+permissions:
12
+ contents: write
13
14
+concurrency:
15
+ group: ci-${{ github.ref }}
16
+ cancel-in-progress: true
17
18
+jobs:
19
+ build:
20
+ name: Build
21
+ runs-on: windows-latest
22
+ defaults:
23
+ run:
24
+ shell: pwsh
25
+ steps:
26
+ - name: Checkout repository
27
+ uses: actions/checkout@v4
28
+ with:
29
+ fetch-depth: 0
30
31
+ - name: Set up MSBuild
32
+ uses: microsoft/setup-msbuild@v2
33
34
+ - name: Build solution
35
+ run: |
36
+ msbuild "src\WORR-kex.sln" /m /p:Configuration=Debug /p:Platform=x64
0 commit comments