From 47e445fde5b9458cc217f255977322358dd2b4a5 Mon Sep 17 00:00:00 2001 From: Brian Ward Date: Wed, 29 Oct 2025 09:45:41 -0400 Subject: [PATCH] Use new codecov uploader, avoid rate limiting --- .github/workflows/main.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1cd88387..396503a2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -107,7 +107,8 @@ jobs: pytest -v ../test --cov=../cmdstanpy - name: Submit codecov - run: | - pip install codecov - cd run_tests - codecov + uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }} + verbose: true + directory: ./run_tests