Update group docs.viewer references up to 23.12 version #176
Workflow file for this run
This file contains 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: Test .NET Core build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 3.1.301 | |
- name: Restore dependencies | |
run: dotnet restore Examples/GroupDocs.Viewer.Examples.CSharp.Core | |
- name: Test build for .NET Core project | |
run: dotnet build --no-restore Examples/GroupDocs.Viewer.Examples.CSharp.Core |