From 320efd4bf4bbf03084e36b8eaa696cb0381d2531 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Mon, 9 Mar 2020 13:49:41 -0400 Subject: [PATCH] try avoiding windows newlines --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1b9a621..1a1d6a6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,6 +12,9 @@ jobs: - "2.7" steps: + # Avoid letting Windows newlines confusing milksnake. + - run: "git config --global core.autocrlf false" + - uses: actions/checkout@v2 with: fetch-depth: "0" -- GitLab