Skip to content

Add oval ROI tool (#52) #49

Add oval ROI tool (#52)

Add oval ROI tool (#52) #49

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
name: Build and test
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore
run: dotnet restore ImageJCsharp.sln
- name: Build
run: dotnet build ImageJCsharp.sln --no-restore
- name: Test
run: dotnet test tests/ImageJCsharp.Core.Tests/ImageJCsharp.Core.Tests.csproj --no-build