Skip to content

fix(quicklayout): account for macOS scaling in overlay and move/resize #37

fix(quicklayout): account for macOS scaling in overlay and move/resize

fix(quicklayout): account for macOS scaling in overlay and move/resize #37

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [windows-2022, macos-14]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Restore
run: dotnet restore YASN.sln
- name: Lint (dotnet format)
run: dotnet format YASN.sln --verify-no-changes --no-restore
- name: Build
run: dotnet build YASN.sln -c Release --no-restore
- name: Test
run: dotnet test YASN.sln -c Release --no-build