From 685d3dfb9d586b5ff7f97dde9186efa8d7fda48d Mon Sep 17 00:00:00 2001 From: Sebastien Binet Date: Tue, 17 Aug 2021 11:41:56 +0200 Subject: [PATCH] ci: add git-config for Windows --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74fa15661..6bd1c920b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,6 +46,11 @@ jobs: restore-keys: | ${{ runner.os }}-root-${{ env.ROOT_VERSION }} + - name: Setup Git for Windows + run: | + git config --global core.autocrlf false + git config --global core.eol lf + - name: Checkout code uses: actions/checkout@v2