Skip to content

Commit 291cfb5

Browse files
authored
Create build.yml
1 parent b354e67 commit 291cfb5

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build-master
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
jobs:
8+
build:
9+
name: build-master
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
16+
- name: Setup .NET Core
17+
uses: actions/setup-dotnet@v3.2.0
18+
with:
19+
dotnet-version: 9.0.200
20+
21+
- name: Build
22+
run: dotnet build --configuration Release
23+
24+
- name: Test
25+
run: dotnet test --configuration Release --no-build

0 commit comments

Comments
 (0)