Commit 658858e975835476f21130054461f4e3f88e021a

Authored by Christian Herdtweck
1 parent 6502a777

Add debug output to workflow preparation

Want this to check why requirements installation does not happen as expected
.github/workflows/unittests.yml
... ... @@ -22,6 +22,8 @@ jobs:
22 22 python-version: ${{ matrix.python-version }}
23 23 - name: Install dependencies
24 24 run: |
  25 + python -c "import sys; import platform; print(sys.version); print(sys.platform); print(platform.python_implementation()); print(platform.system())"
  26 + cat requirements.txt
25 27 python -m pip install --upgrade pip
26 28 pip install -r requirements.txt
27 29 - name: Run unittests
... ...