Skip to content
This repository was archived by the owner on Jun 26, 2026. It is now read-only.

Commit 355d10b

Browse files
authored
Refactor build workflow for .NET Core applications
1 parent 7bf4280 commit 355d10b

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Orchard Core Contrib Library
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
name: Build windows-latest
12+
runs-on: windows-latest
13+
steps:
14+
- uses: actions/checkout@v6
15+
- name: Setup .NET Core
16+
uses: actions/setup-dotnet@v5
17+
with:
18+
dotnet-version: 10.0.*
19+
- name: Install Dependencies
20+
run: dotnet restore
21+
- name: Build
22+
run: dotnet build --configuration Release --no-restore
23+
- name: Test
24+
run: dotnet test --no-restore --verbosity normal

0 commit comments

Comments
 (0)