From 2374d8c012adfee6953fb8dce1c0b4cef97150ad Mon Sep 17 00:00:00 2001 From: "Jonathan M. Waldrop" Date: Tue, 2 Apr 2024 16:34:47 -0500 Subject: [PATCH] add install requirements step to test --- .github/workflows/pull_request.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index 2d9bbc4..962a4b7 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -53,6 +53,10 @@ jobs: run: | # Fix for git not liking owner of the checkout dir chown -R $(id -u):$(id -g) $PWD + - name: Install requirements + run: | + pip install -r requirements.txt + shell: bash - name: Build and Test env: CMAIZE_GITHUB_TOKEN: ${{secrets.CMAIZE_GITHUB_TOKEN}}