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

Prettify PR body

Prettify PR body #51

Workflow file for this run

name: Orchard Core Contrib Library
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Build windows-latest
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.*
- name: Install Dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal