Setup git on windows for long paths

- Relates #2
- Relates #5
This commit is contained in:
Janne Valkealahti
2023-12-14 17:14:49 +00:00
parent 4adca91764
commit a9bb18fded

View File

@@ -24,6 +24,10 @@ jobs:
java: 17
name: CI Build ${{ matrix.nickname }}
steps:
- name: Set git config for long paths
if: runner.os == 'Windows'
run: |
git config --system core.longpaths true
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with: