From 68982ad3c2673ee01643e4e05858129b8c9de7e9 Mon Sep 17 00:00:00 2001 From: Luca Auer Date: Tue, 12 Dec 2023 19:18:01 +0100 Subject: [PATCH] Add UI tests step --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64cb2b53..f008c688 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,8 +27,10 @@ jobs: uses: gittools/actions/gitversion/execute@v0 - name: Build run: dotnet build --configuration Release - - name: Test + - name: Unit Tests run: dotnet test .\tests\ImageSort.UnitTests\ImageSort.UnitTests.csproj --configuration Release --no-build + - name: UI Tests + run: dotnet test .\tests\ImageSort.WPF.UiTests\ImageSort.WPF.UiTests.csproj --configuration Release --no-build - name: Build WIX project if: ${{ github.event_name == 'release' }} env: