From c3faf3df4d4f3b0f11a9eac26d828e80bbe6b29f Mon Sep 17 00:00:00 2001 From: Ryan Ahearn Date: Thu, 19 Jan 2023 09:38:18 -0500 Subject: [PATCH] Install newrelic before attempting to validate config --- .github/workflows/checks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 146abfaf6..c5f2a3d0c 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -60,6 +60,8 @@ jobs: steps: - uses: actions/checkout@v3 - uses: ./.github/actions/setup-project + - name: Install pipenv packages + run: pipenv install --dev - name: Validate NewRelic config env: NEW_RELIC_LICENSE_KEY: ${{ secrets.NEW_RELIC_LICENSE_KEY }}