Skip to content

fix: let a row grow with an editor taller than a line #4

fix: let a row grow with an editor taller than a line

fix: let a row grow with an editor taller than a line #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # MinVer needs the full history and tags
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Build
run: dotnet build -c Release
- name: Test
run: dotnet test -c Release --no-build
- name: Pack
run: dotnet pack src/Digi21.WinUI.PropertyGrid/Digi21.WinUI.PropertyGrid.csproj -c Release --no-build -o artifacts
- name: Upload package artifact
uses: actions/upload-artifact@v4
with:
name: nuget-packages
path: |
artifacts/*.nupkg
artifacts/*.snupkg