Skip to content

Bump OC to 3.0.0-preview-19005 #67

Bump OC to 3.0.0-preview-19005

Bump OC to 3.0.0-preview-19005 #67

Workflow file for this run

name: Orchard Core Contrib PO Extractor
on:
pull_request:
branches: [ main ]
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
build:
name: Build windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.*
- name: Install Dependencies
run: dotnet restore --configfile ./NuGet.config
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal