Skip to content

Commit a967d28

Browse files
committed
added CI builds
1 parent 601cbfc commit a967d28

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

.github/workflows/build.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: windows-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Setup .NET
12+
uses: actions/setup-dotnet@v4
13+
with:
14+
dotnet-version: '8.0.x'
15+
- name: Build
16+
shell: pwsh
17+
run: .\build.ps1

Stack.sln

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Repo", "Repo", "{55FC7D5D-8
1919
.editorconfig = .editorconfig
2020
.gitignore = .gitignore
2121
.gitmodules = .gitmodules
22+
build.ps1 = build.ps1
23+
.github\workflows\build.yaml = .github\workflows\build.yaml
2224
LICENSE = LICENSE
2325
README.md = README.md
2426
EndProjectSection

build.ps1

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
cd src\App
2+
3+
dotnet restore
4+
5+
dotnet build

0 commit comments

Comments
 (0)