diff --git a/.github/workflows/common_pull_request.yaml b/.github/workflows/common_pull_request.yaml index 7d7644a..1290b5a 100644 --- a/.github/workflows/common_pull_request.yaml +++ b/.github/workflows/common_pull_request.yaml @@ -165,6 +165,12 @@ jobs: toolchain=/toolchains/nwx_${{ matrix.compiler }}.cmake echo 'include('${PWD}'/${{ inputs.repo_toolchain }})' >> $toolchain shell: bash + - name: Python Requirements + run: | + if [ -f requirements.txt ]; then + pip install -r requirements.txt + fi + shell: bash - name: Build and Test env: CMAIZE_GITHUB_TOKEN: ${{secrets.CMAIZE_GITHUB_TOKEN}}