From b7e141227e66bfd9ea9e095c40b8cb5b4bc0955f Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Mon, 31 Oct 2022 07:39:54 -0300 Subject: [PATCH] ci: disable autocrlf on windows --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 907a722..9e1fce8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,9 +7,6 @@ jobs: os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{matrix.os}} steps: - - uses: actions/checkout@v2 - with: - submodules: true - uses: goto-bus-stop/setup-zig@v1 with: version: master @@ -23,10 +20,14 @@ jobs: run: | vcpkg integrate install vcpkg install sdl2:x64-windows + git config --global core.autocrlf false - name: prepare-macos if: runner.os == 'macOS' run: | brew install sdl2 + - uses: actions/checkout@v2 + with: + submodules: true - name: build run: zig build -Drelease-safe lint: