diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 6e6ca4f7d..ef57877f9 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -4,6 +4,9 @@ name: Run test on DLLs matching the specified pattern description: Runs unit/integration tests inputs: + artifact: + description: 'Test binary artifact' + required: true pattern: description: 'Pattern for DLLs' required: true @@ -20,9 +23,9 @@ runs: - name: Download Artifact uses: actions/download-artifact@v4 with: - name: tests-linux-x64 + name: ${{ inputs.artifact }} path: _tests - name: Run tests shell: bash - run: dotnet test Sonarr.*.Test.dll --filter "${{ inputs.filter }}" + run: dotnet test Sonarr.*.Test.dll --filter "${{ inputs.filter }}" --logger trx --results-directory "TestResults-${{ matrix.dotnet-version }}" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 699f610e0..06fdb92c8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -112,5 +112,6 @@ jobs: - name: Test uses: ./.github/actions/test with: + artifact: tests-linux-x64 pattern: Sonarr.*.Test.dll filter: TestCategory!=ManualTest&TestCategory!=WINDOWS&TestCategory!=IntegrationTest&TestCategory!=AutomationTest