From a49a7664248bb01e5d1482fac26f1aa1fdec182b Mon Sep 17 00:00:00 2001 From: mat Date: Wed, 4 Mar 2026 23:27:57 -0500 Subject: [PATCH] =?UTF-8?q?fix(ci):=20export=20PATH=20in=20test=20step=20?= =?UTF-8?q?=E2=80=94=20each=20step=20has=20fresh=20shell=20on=20ARC=20runn?= =?UTF-8?q?ers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-tests.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 56cbb0870..02e5b7dcd 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -28,13 +28,14 @@ jobs: echo "PATH=$DOTNET_INSTALL_DIR:$PATH" >> "$GITHUB_ENV" - name: Run DotNet CLI Tests - run: > - dotnet test Jellyfin.sln - --configuration Release - --collect:"XPlat Code Coverage" - --settings tests/coverletArgs.runsettings - --verbosity minimal - --filter "Category!=RequiresDocker" + run: | + export PATH="$HOME/.dotnet:$PATH" + dotnet test Jellyfin.sln \ + --configuration Release \ + --collect:"XPlat Code Coverage" \ + --settings tests/coverletArgs.runsettings \ + --verbosity minimal \ + --filter "Category!=RequiresDocker" - name: Merge code coverage results uses: danielpalme/ReportGenerator-GitHub-Action@ee0ae774f6d3afedcbd1683c1ab21b83670bdf8e # v5.5.1