We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cross_platform_tests
1 parent 5044245 commit 85c4b9bCopy full SHA for 85c4b9b
.github/workflows/ci.yml
@@ -40,6 +40,12 @@ jobs:
40
toolchain: [stable, beta, nightly]
41
steps:
42
- uses: actions/checkout@v4
43
+ - name: Enable long paths on Windows
44
+ if: runner.os == 'Windows'
45
+ run: |
46
+ New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" `
47
+ -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
48
+ shell: pwsh
49
- uses: hecrj/setup-rust-action@v2
50
with:
51
rust-version: ${{ matrix.toolchain }}
0 commit comments