From 719a4f718326a6430210e603d23536bd22691777 Mon Sep 17 00:00:00 2001 From: John Rofrano Date: Thu, 27 Jun 2024 07:10:35 -0400 Subject: [PATCH] Update workflow.yml to add Codecov Token Apparently Codecov needs a token even though the documentation says it's optional. --- .github/workflows/workflow.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 3aa3f5c3..2a2f74d5 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -51,8 +51,11 @@ jobs: env: DATABASE_URI: "redis://redis:6379" - # Uncomment the following 2 lines during hands-on lab + # Create a CODECOV_TOKEN in Settings->Secrets and variables->Actions + # and then uncomment the following 4 lines during hands-on lab - # - name: Upload code coverage + # - name: Upload coverage reports to Codecov # uses: codecov/codecov-action@v3.1.4 + # with: + # token: ${{ secrets.CODECOV_TOKEN }}