Skip to content

Commit f04cce8

Browse files
committed
feat: wip
1 parent b461e8b commit f04cce8

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/python.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ jobs:
2020
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
23+
- if: matrix.os != 'windows-latest'
24+
run: |
25+
set -Eexo pipefail
26+
ls -lah .
27+
ls -lah .git
28+
echo "${GIT_DIR}"
29+
echo "${GIT_WORK_TREE}"
30+
echo "${GIT_COMMON_DIR}"
2331
- uses: actions/setup-python@v6
2432
with:
2533
python-version: ${{ matrix.python-version }}

test/examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
_GIT_REPOS_ROOT = pathlib.Path(os.environ.get('EXAMPLE_PROJECTS_PATH', '..')).resolve()
1313

14-
GIT_REPO_EXAMPLES = list(_ for _ in _GIT_REPOS_ROOT.glob('**/.git') if _.is_dir())
14+
GIT_REPO_EXAMPLES = list(_.parent for _ in _GIT_REPOS_ROOT.glob('**/.git') if _.is_dir())
1515

1616

1717
def python_lib_dir() -> pathlib.Path:

0 commit comments

Comments
 (0)