Skip to content

Commit

Permalink
Use long paths on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlegiantJGC committed Oct 27, 2024
1 parent 2e03fa2 commit 9b8d252
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ jobs:
- {os: ubuntu-latest, python-version: '3.12', architecture: x64}

steps:
- name: Configure Git
shell: bash
run: |
git config --global core.longpaths true
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.cfg.python-version }} ${{ matrix.cfg.architecture }}
uses: actions/setup-python@v4
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/python-unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
python-version: ['3.11', '3.12']
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- name: Configure Git
shell: bash
run: |
git config --global core.longpaths true
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down

0 comments on commit 9b8d252

Please sign in to comment.