diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 9022f6106..df52ec9c5 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -17,9 +17,15 @@ runs: - name: Setup .NET uses: actions/setup-dotnet@v3 + - name: Download Artifact + uses: actions/download-artifact@v4 + with: + name: tests-linux-x64 + path: _tests + - name: Run tests shell: bash runs: | - for i in tests/${{ inputs.pattern }}; do + for i in _tests/${{ inputs.pattern }}; do dotnet test $i --no-build -c Release --filter ${{ inputs.filter }} done diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0ec6128e1..90daf4208 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,7 +77,7 @@ jobs: # global.json Artifact - - name: Publish Distribution Artifact + - name: Publish global.json Artifact uses: actions/upload-artifact@v4 with: name: global_json @@ -114,16 +114,8 @@ jobs: needs: backend runs-on: ubuntu-latest steps: - - name: Download global.json - uses: actions/download-artifact@v4 - with: - name: global_json - - - name: Download Artifact - uses: actions/download-artifact@v4 - with: - name: tests-linux-x64 - path: tests + - name: Check out + uses: actions/checkout@v3 - name: Test uses: ./.github/actions/test