From 48b04dfb7f18f7bbc006a88bbfcbfd9050a01a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Wei=C3=9F?= <72068105+Sandoun@users.noreply.github.com> Date: Mon, 13 Nov 2023 11:49:29 +0100 Subject: [PATCH] Update test-pipeline.yml --- .github/workflows/test-pipeline.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test-pipeline.yml b/.github/workflows/test-pipeline.yml index bce2e66..cb05445 100644 --- a/.github/workflows/test-pipeline.yml +++ b/.github/workflows/test-pipeline.yml @@ -22,10 +22,6 @@ jobs: name: 'Run tests and documentation' runs-on: self-hosted steps: - - - name: 'Clean workspace' - run: | - rm -rf ${{ github.workspace }}/* - name: 'Checkout' uses: actions/checkout@v3 @@ -35,12 +31,12 @@ jobs: run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT id: extract_branch - - name: 'Setup dotnet' - uses: actions/setup-dotnet@v2 - with: - dotnet-version: | - 6.0.x - 7.0.x + #- name: 'Setup dotnet' + # uses: actions/setup-dotnet@v2 + # with: + # dotnet-version: | + # 6.0.x + # 7.0.x - name: 'Run tests' run: dotnet test "./MewtocolTests" /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=../Builds/TestResults/coverage.opencover.xml