diff options
| author | David Lönnhager <david.l@mullvad.net> | 2025-09-11 16:46:09 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-09-11 16:55:02 +0200 |
| commit | 67b9020bf9140b6abc841527e07c4e8a2f9fa4b4 (patch) | |
| tree | ae7690f205fe2cbe19fc85b2000d261d48e074fa /.github/workflows/clippy.yml | |
| parent | d7ba64465303c7accea501ab8bd3f1a870277e07 (diff) | |
| download | mullvadvpn-67b9020bf9140b6abc841527e07c4e8a2f9fa4b4.tar.xz mullvadvpn-67b9020bf9140b6abc841527e07c4e8a2f9fa4b4.zip | |
Set core.longpaths in all relevant workflows
Diffstat (limited to '.github/workflows/clippy.yml')
| -rw-r--r-- | .github/workflows/clippy.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 0c35a4d6d4..1e448fb863 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -37,6 +37,12 @@ jobs: os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} steps: + # By default, the longest path a filename can have in git on Windows is 260 character. + - name: Set git config for long paths + if: runner.os == 'Windows' + run: | + git config --system core.longpaths true + - name: Checkout repository uses: actions/checkout@v4 |
