Skip to content

Add pluggable image-comparison strategies with auto-selection, benchmarking, and test harness #15

Add pluggable image-comparison strategies with auto-selection, benchmarking, and test harness

Add pluggable image-comparison strategies with auto-selection, benchmarking, and test harness #15

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0.x"
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Run tests
run: dotnet run --no-build --configuration Release --project ImageComparator.Tests/ImageComparator.Tests.csproj
- name: Publish (self-contained)
run: dotnet publish --no-build --configuration Release --output publish