From f0c90c5e0fa6da3505f140bdaf56b2f7e581fb85 Mon Sep 17 00:00:00 2001 From: Ali Caglayan Date: Tue, 22 Aug 2023 21:26:43 +0100 Subject: [PATCH] chore: configure git to work on windows in ci Signed-off-by: Ali Caglayan --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54cbc20..ed65ce2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,12 @@ jobs: runs-on: ${{ matrix.os }} steps: + - name: Set git to use LF + run: | + git config --global core.autocrlf false + git config --global core.eol lf + git config --global core.ignorecase false + - name: Checkout code uses: actions/checkout@v3