solve this stupid thing

This commit is contained in:
otavepto 2024-05-11 17:24:12 +03:00
parent 46a13095b7
commit b017550ccf
2 changed files with 18 additions and 0 deletions

View File

@ -26,6 +26,15 @@ jobs:
with:
python-version: "3.10"
### on Windows Git will auto change line ending to CRLF, not preferable
- name: Ensure LF line ending
shell: cmd
working-directory: ${{ github.workspace }}
run: |
git config --local core.autocrlf false
git config --system core.autocrlf false
git config --global core.autocrlf false
- name: Checkout branch
uses: actions/checkout@v4

View File

@ -26,6 +26,15 @@ jobs:
with:
python-version: "3.10"
### on Windows Git will auto change line ending to CRLF, not preferable
- name: Ensure LF line ending
shell: cmd
working-directory: ${{ github.workspace }}
run: |
git config --local core.autocrlf false
git config --system core.autocrlf false
git config --global core.autocrlf false
- name: Checkout branch
uses: actions/checkout@v4