Skip to content

Extend wall slabs past their ends to close corner gaps (#4) #19

Extend wall slabs past their ends to close corner gaps (#4)

Extend wall slabs past their ends to close corner gaps (#4) #19

Workflow file for this run

name: dotnet
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: build & test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.0.x
- name: Restore
run: dotnet restore OpenApparatus.sln
- name: Build
run: dotnet build OpenApparatus.sln --configuration Release --no-restore
- name: Test
run: dotnet test OpenApparatus.sln --configuration Release --no-build --verbosity normal