From f8e4a0ae21cb558f86dd94c30a882ac033cc1e28 Mon Sep 17 00:00:00 2001 From: Sander Blue Date: Wed, 29 May 2024 13:12:39 -0500 Subject: [PATCH] chore: remove workflow_call since we don't use it --- .github/workflows/test_integration.yml | 39 ++++---------------------- .github/workflows/test_unit.yml | 3 -- 2 files changed, 5 insertions(+), 37 deletions(-) diff --git a/.github/workflows/test_integration.yml b/.github/workflows/test_integration.yml index e817d2f1d..31070d062 100644 --- a/.github/workflows/test_integration.yml +++ b/.github/workflows/test_integration.yml @@ -5,40 +5,6 @@ on: push: branches: [main] pull_request: - workflow_call: - secrets: - NEW_RELIC_ACCOUNT_ID: - required: true - NEW_RELIC_SUBACCOUNT_ID: - required: true - NEW_RELIC_ADMIN_API_KEY: - required: true - NEW_RELIC_API_KEY: - required: true - NEW_RELIC_LICENSE_KEY: - required: true - NEW_RELIC_REGION: - required: true - NEW_RELIC_INSIGHTS_INSERT_KEY: - required: true - NR_ACC_TESTING: - required: true - INTEGRATION_TESTING_AWS_ARN: - required: true - INTEGRATION_TESTING_GCP_ACCOUNT_NAME: - required: true - INTEGRATION_TESTING_GCP_PROJECT_ID: - required: true - INTEGRATION_TESTING_GCP_INTEGRATIONS_PROJECT_ID: - required: true - INTEGRATION_TESTING_AZURE_APPLICATION_ID: - required: true - INTEGRATION_TESTING_AZURE_CLIENT_SECRET_ID: - required: true - INTEGRATION_TESTING_AZURE_SUBSCRIPTION_ID: - required: true - INTEGRATION_TESTING_AZURE_TENANT_ID: - required: true jobs: test-integration: @@ -84,3 +50,8 @@ jobs: INTEGRATION_TESTING_AZURE_CLIENT_SECRET_ID: ${{ secrets.INTEGRATION_TESTING_AZURE_CLIENT_SECRET_ID }} INTEGRATION_TESTING_AZURE_SUBSCRIPTION_ID: ${{ secrets.INTEGRATION_TESTING_AZURE_SUBSCRIPTION_ID }} INTEGRATION_TESTING_AZURE_TENANT_ID: ${{ secrets.INTEGRATION_TESTING_AZURE_TENANT_ID }} + + - name: Report test coverage via Codecov + uses: codecov/codecov-action@v4 + with: + files: ./coverage/coverage.out diff --git a/.github/workflows/test_unit.yml b/.github/workflows/test_unit.yml index eb0d7e249..f0cbf6dd5 100644 --- a/.github/workflows/test_unit.yml +++ b/.github/workflows/test_unit.yml @@ -39,6 +39,3 @@ jobs: uses: codecov/codecov-action@v4 with: files: ./coverage/coverage.out - - -