Debug system PATHs

This commit is contained in:
Anton Tayanovskyy 2021-11-23 11:48:46 -05:00
parent 06a4b5b044
commit db93628984
2 changed files with 7 additions and 0 deletions

View file

@ -194,6 +194,9 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Diagnose System Path
run: |
python scripts/path.py
- name: Set up DotNet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1
with:

4
scripts/path.py Normal file
View file

@ -0,0 +1,4 @@
import os
for sub_path in os.environ['PATH'].split(os.pathsep):
print(sub_path)