Skip to content

feat(duplicates): add the duplicate finder window #5

feat(duplicates): add the duplicate finder window

feat(duplicates): add the duplicate finder window #5

Workflow file for this run

name: Tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ windows-latest, ubuntu-latest ]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup .NET 10
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Run tests
run: >
dotnet test
EasyExtractUnitypackageRework/EasyExtractCrossPlatform.Tests/EasyExtractCrossPlatform.Tests.csproj
--configuration Release
--logger "trx;LogFileName=test-results.trx"
--results-directory test-results
- name: Upload test results
if: always()
uses: actions/upload-artifact@v6
with:
name: test-results-${{ matrix.os }}
path: test-results/*.trx
if-no-files-found: warn