From 225ffbfb8424c0703aef37e173034abb81432fd5 Mon Sep 17 00:00:00 2001 From: Alex Vergara Date: Thu, 8 Aug 2024 22:07:51 +0200 Subject: [PATCH] fix: Wrong indentation on the GCC Windows tests (GitHub actions) --- .github/workflows/tests-gcc-windows.yml | 66 ++++++++++++------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/.github/workflows/tests-gcc-windows.yml b/.github/workflows/tests-gcc-windows.yml index 45d6028b..b8661c8f 100644 --- a/.github/workflows/tests-gcc-windows.yml +++ b/.github/workflows/tests-gcc-windows.yml @@ -29,41 +29,41 @@ jobs: with: fetch-depth: 0 - - name: '${{ matrix.icon }} Setup MSYS2' - uses: msys2/setup-msys2@v2 - with: - msystem: ${{matrix.sys}} - cache: true - update: true - install: >- - git - pacboy: >- - toolchain:p - cmake:p - ninja:p + - name: '${{ matrix.icon }} Setup MSYS2' + uses: msys2/setup-msys2@v2 + with: + msystem: ${{matrix.sys}} + cache: true + update: true + install: >- + git + pacboy: >- + toolchain:p + cmake:p + ninja:p - - name: Cache 3rd party dependencies - id: cache-3rd-party-deps-restore - uses: actions/cache/restore@v3 - with: - path: | - install - key: ${{ runner.os }}-cache-3rd-party-deps + - name: Cache 3rd party dependencies + id: cache-3rd-party-deps-restore + uses: actions/cache/restore@v3 + with: + path: | + install + key: ${{ runner.os }}-cache-3rd-party-deps - - name: Caching project dependencies - id: project-cache - uses: Swatinem/rust-cache@v2 + - name: Caching project dependencies + id: project-cache + uses: Swatinem/rust-cache@v2 - - name: Running the tests for the project - run: | - cd zork++ - RUST_LOG=trace cargo test 2>&1 gcc_windows --color=always --no-fail-fast -- --nocapture --show-output --test-threads=1 + - name: Running the tests for the project + run: | + cd zork++ + RUST_LOG=trace cargo test 2>&1 gcc_windows --color=always --no-fail-fast -- --nocapture --show-output --test-threads=1 - - name: Cache 3rd party dependencies - id: cache-save-3rd-party-deps - uses: actions/cache/save@v3 - with: - path: | - install - key: ${{ steps.cache-3rd-party-deps-restore.outputs.cache-primary-key }} + - name: Cache 3rd party dependencies + id: cache-save-3rd-party-deps + uses: actions/cache/save@v3 + with: + path: | + install + key: ${{ steps.cache-3rd-party-deps-restore.outputs.cache-primary-key }}