From cf8d76bf91dd9939adba042a5f580f00320e9091 Mon Sep 17 00:00:00 2001 From: Du Phan Date: Tue, 3 Dec 2024 15:02:57 -0500 Subject: [PATCH] add github token for coveralls --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdfffd23b..5801e2a19 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,9 +8,6 @@ on: pull_request: branches: [ master ] -env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - jobs: lint: @@ -82,6 +79,8 @@ jobs: - name: Coveralls if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.10' uses: coverallsapp/github-action@v2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} test-inference: @@ -132,6 +131,8 @@ jobs: - name: Coveralls if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.10' uses: coverallsapp/github-action@v2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} examples: @@ -163,3 +164,5 @@ jobs: - name: Coveralls if: github.repository == 'pyro-ppl/numpyro' && matrix.python-version == '3.10' uses: coverallsapp/github-action@v2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }}