Skip to content

Improve sample app

Improve sample app #7

Workflow file for this run

name: CI
on:
push:
jobs:
build:
name: Restore, Build, Test, Pack
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Restore
run: dotnet restore src/DocSharp.sln
- name: Build
run: dotnet build src/DocSharp.sln --configuration Release --no-restore --nologo
- name: Test
run: dotnet test src/DocSharp.sln --configuration Release --no-build --nologo