diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 35fa767e..b579c9ab 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -55,10 +55,14 @@ jobs: working-directory: ./tmp/performance-analyzer run: ./gradlew jacocoTestReport - name: Upload coverage report - working-directory: ./tmp/performance-analyzer - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - run: bash <(curl -s https://codecov.io/bash) -f ./build/reports/jacoco/test/jacocoTestReport.xml + uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + - uses: actions/upload-artifact@v3 + with: + name: linux-JDK${{ matrix.java }}-reports + path: | + ./tmp/performance-analyzer/build/reports/ - name: Run Integration Tests working-directory: ./tmp/performance-analyzer run: ./gradlew integTest -Dtests.enableIT -Dtests.useDockerCluster