From 354f4e945ef90994ac14208e572429a80b2df19b Mon Sep 17 00:00:00 2001 From: Sam Freund Date: Sat, 16 Aug 2025 20:54:01 -0500 Subject: [PATCH] Remove codecov from workflow (#2070) ## Description It's unused and fails when run, so I'm removing it. ## Meta Merge checklist: - [x] Pull Request title is [short, imperative summary](https://cbea.ms/git-commit/) of proposed changes - [x] The description documents the _what_ and _why_ - [ ] If this PR changes behavior or adds a feature, user documentation is updated - [ ] If this PR touches photon-serde, all messages have been regenerated and hashes have not changed unexpectedly - [ ] If this PR touches configuration, this is backwards compatible with settings back to v2024.3.1 - [ ] If this PR touches pipeline settings or anything related to data exchange, the frontend typing is updated - [ ] If this PR addresses a bug, a regression test for it is added --- .github/workflows/build.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b9d49cda..f29a7ff3f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -108,14 +108,6 @@ jobs: run: ./gradlew testHeadless --stacktrace - name: Gradle Coverage run: ./gradlew jacocoTestReport - - name: Publish Coverage Report - uses: codecov/codecov-action@v4 - with: - file: ./photon-server/build/reports/jacoco/test/jacocoTestReport.xml - - name: Publish Core Coverage Report - uses: codecov/codecov-action@v4 - with: - file: ./photon-core/build/reports/jacoco/test/jacocoTestReport.xml build-offline-docs: name: "Build Offline Docs" runs-on: ubuntu-22.04