Skip to content

Commit cd5942e

Browse files
committed
Create build.yml
1 parent dfd0bd5 commit cd5942e

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/build.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: YAF.NET v4 (.NET v8)
2+
on:
3+
push:
4+
branches:
5+
- master
6+
7+
jobs:
8+
build:
9+
10+
runs-on: windows-latest
11+
strategy:
12+
matrix:
13+
dotnet-version: [ '8.0.x' ]
14+
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
18+
uses: actions/setup-dotnet@v3
19+
with:
20+
dotnet-version: ${{ matrix.dotnet-version }}
21+
- name: Install dependencies
22+
working-directory: ./
23+
run: dotnet restore ./YAF.SampleApp.sln
24+
- name: Build
25+
working-directory: ./
26+
run: dotnet build ./YAF.SampleApp.sln

0 commit comments

Comments
 (0)