From b6c247516037f9254a014dd4762f74762a71f6eb Mon Sep 17 00:00:00 2001 From: = <=> Date: Tue, 16 Jul 2024 07:19:38 -0400 Subject: [PATCH] Moved secrets from make install to make test --- .github/workflows/pr.yaml | 4 ++-- .github/workflows/push.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 971e6c5..5a68682 100755 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -47,11 +47,11 @@ jobs: python-version: 3.9 - name: Install package run: make install + - name: Run tests + run: make test env: POVERTYTRACKER_RAW_URL: ${{ secrets.POVERTYTRACKER_RAW_URL }} POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN: ${{ secrets.POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN}} - - name: Run tests - run: make test - uses: codecov/codecov-action@v3 - name: Build package run: make diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index be1fe9b..da0d25f 100755 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -62,11 +62,11 @@ jobs: python-version: 3.9 - name: Install package run: make install + - name: Run tests + run: make test env: POVERTYTRACKER_RAW_URL: ${{ secrets.POVERTYTRACKER_RAW_URL }} POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN: ${{ secrets.POLICYENGINE_GITHUB_MICRODATA_AUTH_TOKEN}} - - name: Run tests - run: make test - uses: codecov/codecov-action@v3 - name: Test documentation builds if: matrix.os == 'ubuntu-latest'