From 99632797cbf323936adfb70c2e8bb4b654c518fe Mon Sep 17 00:00:00 2001 From: TheSlowGrowth <9356320+TheSlowGrowth@users.noreply.github.com> Date: Wed, 4 Sep 2024 09:24:23 +0200 Subject: [PATCH] style: add some newlines in github actions yaml --- .github/workflows/plugin.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/plugin.yaml b/.github/workflows/plugin.yaml index d702b02..d965be3 100644 --- a/.github/workflows/plugin.yaml +++ b/.github/workflows/plugin.yaml @@ -34,12 +34,15 @@ jobs: - name: Configure run: | cmake.exe -G "Visual Studio 17 2022" -A x64 -B plugin/build -S plugin + - name: Build run: | cmake --build plugin/build --config Release + - name: Run Tests run: | plugin/build/Release/TapeLooperPlugin_Gtest.exe --gtest_output=xml:TestResults\gtestResults_windows.xml + - name: Upload Test Results uses: actions/upload-artifact@v2 with: @@ -82,12 +85,15 @@ jobs: - name: Configure run: | cmake -G "Xcode" -B plugin/build -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" -S plugin + - name: Build run: | cmake --build plugin/build --config Release + - name: Run Tests run: | plugin/build/Release/TapeLooperPlugin_Gtest --gtest_output=xml:TestResults/gtestResults_macos.xml + - name: Upload Test Results uses: actions/upload-artifact@v2 with: @@ -126,12 +132,15 @@ jobs: - name: Configure run: | cmake -G "Unix Makefiles" -B plugin/build -S plugin + - name: Build run: | cmake --build plugin/build --config Release + - name: Run Tests run: | plugin/build/TapeLooperPlugin_Gtest --gtest_output=xml:TestResults/gtestResults_ubuntu.xml + - name: Upload Test Results uses: actions/upload-artifact@v2 with: