We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bf4280 commit 355d10bCopy full SHA for 355d10b
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,24 @@
1
+name: Orchard Core Contrib Library
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
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