From d12f4bb22f4ee40998ec49edf9ef8cb931cdcfcc Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Thu, 18 Apr 2024 09:59:10 +0100 Subject: [PATCH] ci: checkout code with LF line endings --- .github/workflows/run-tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 6ad65ec..80b8a9e 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -25,6 +25,12 @@ jobs: name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} steps: + + - name: Set Git to use LF line endings + run: | + git config --global core.autocrlf false + git config --global core.eol lf + - name: Checkout code uses: actions/checkout@v4