diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9e3166330f3a525fe3d242467f35e63850f9f099..c8995972397b0b4eee5e00b527d99897cf39050c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -37,19 +37,19 @@ jobs: - name: "Upgrade Pip" run: | - python -m pip install --upgrade pip + python -m pip install -v --upgrade pip - name: "Install CI Dependencies" run: | - python -m pip install wheel coverage + python -m pip install -v wheel coverage - name: "Install Test Dependencies" run: | - python -m pip install -r test-requirements.txt + python -m pip install -v -r test-requirements.txt - name: "Install ZKAPAuthorizer" run: | - python -m pip install ./ + python -m pip install -v ./ - name: "Dump Python Environment" run: |