Skip to content

Commit

Permalink
style: add some newlines in github actions yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSlowGrowth committed Sep 4, 2024
1 parent 15170e1 commit 9963279
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 9963279

Please sign in to comment.