This repository was archived by the owner on Jun 26, 2026. It is now read-only.
Update OrchardCoreContrib.Library Submodule Version #59
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Orchard Core Contrib App | |
| 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 | |
| with: | |
| submodules: true | |
| token: ${{ secrets.OCC_TOKEN }} | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.* | |
| - name: Install Dependencies | |
| run: dotnet restore | |
| - name: Build Library | |
| run: dotnet build OrchardCoreContrib.Library --configuration Release | |
| - name: Build App | |
| run: dotnet build --configuration Release --no-restore | |
| - name: Test App | |
| run: dotnet test --no-restore --verbosity normal |