Skip to content

Feature/multi page generating #54

Feature/multi page generating

Feature/multi page generating #54

Workflow file for this run

name: .NET Ensure 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.x
- name: Restore Nuget Packages
run: dotnet restore SemanticXamlPrint/SemanticXamlPrint.csproj
- name: Build Project
run: dotnet build SemanticXamlPrint/SemanticXamlPrint.csproj --no-restore
- name: Test
run: dotnet test SemanticXamlPrint/SemanticXamlPrint.csproj --no-build --verbosity normal