From ec726f81d1a9b8f2fd888bc0ecd2efa5ff8c2115 Mon Sep 17 00:00:00 2001 From: Travis Raines <571832+rainest@users.noreply.github.com> Date: Mon, 13 Nov 2023 17:37:03 -0800 Subject: [PATCH] tmp: disable codecov without secret --- .github/workflows/integration.yaml | 3 ++- .github/workflows/test.yaml | 15 ++++++++------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index e9a789b..dd7769e 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -10,7 +10,8 @@ on: push: branches: - main - pull_request: {} + pull_request: + - "*" jobs: integration: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1da27c0..2c9bb36 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -10,7 +10,8 @@ on: push: branches: - main - pull_request: {} + pull_request: + - "*" jobs: test: @@ -26,11 +27,11 @@ jobs: uses: golangci/golangci-lint-action@v3.7.0 - name: Run tests with Coverage run: make coverage - - name: Upload Code Coverage - uses: codecov/codecov-action@v3 - with: - name: codecov-deck - token: ${{ secrets.CODECOV_TOKEN }} - fail_ci_if_error: true + #- name: Upload Code Coverage + # uses: codecov/codecov-action@v3 + # with: + # name: codecov-deck + # token: ${{ secrets.CODECOV_TOKEN }} + # fail_ci_if_error: true - name: Build run: make build