Updated GroupDocs.Viewer for .NET to 24.2. Updated sample files, remo… #189
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 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@v3 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Restore dependencies | |
run: dotnet restore Examples/GroupDocs.Viewer.Examples.CSharp.NET6 | |
- name: Test build for .NET project | |
run: dotnet build --no-restore Examples/GroupDocs.Viewer.Examples.CSharp.NET6 |