Skip to content

Commit 0a7a4a7

Browse files
committed
added CI builds
1 parent 601cbfc commit 0a7a4a7

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

.github/workflows/build.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
with:
12+
submodules: true # This enables submodule checkout
13+
- name: Setup .NET
14+
uses: actions/setup-dotnet@v4
15+
with:
16+
dotnet-version: '8.0.x'
17+
- name: Build
18+
shell: pwsh
19+
run: .\build.ps1

Stack.sln

+2
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

+5
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)