From 7ad8bce5ca07614f3cc8c13b2c40282e934021ef Mon Sep 17 00:00:00 2001 From: Ivandro Jao Date: Fri, 22 Nov 2024 13:21:10 +0000 Subject: [PATCH] Comment out matrix strategy in workflow configuration The matrix strategy in the GitHub Actions workflow file has been commented out. This change simplifies the build job configuration by removing the plugin matrix for now. Further adjustments or a different approach to handling multiple plugins might be needed later. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 67b3caa..2e88282 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,9 +11,9 @@ on: jobs: build: runs-on: windows-latest - strategy: - matrix: - plugin: [ 'NoRecursiveDash', 'HIColorer', 'HI2UC', 'LinesUnbreaker' ] +# strategy: +# matrix: +# plugin: [ 'NoRecursiveDash', 'HIColorer', 'HI2UC', 'LinesUnbreaker' ] steps: # Checkout the repository