diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e2682b8..fe23b1ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: - name: Show rate limit run: | curl -sL -H "Authorization: token $GITHUB_TOKEN" -H "Accept: application/vnd.github.v3+json" https://api.github.com/rate_limit - + test-windows: name: Test for Windows runs-on: windows-latest @@ -78,6 +78,11 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DEBUG: 1 steps: + - name: Use LF + run: | + git config --global core.autocrlf false + git config --global core.eol lf + - name: Check out source code uses: actions/checkout@v4