Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Commit

Permalink
Correct yaml syntax #2
Browse files Browse the repository at this point in the history
  • Loading branch information
wilzh40 committed Mar 5, 2023
1 parent 778e6ed commit 011779e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/cmake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ jobs:
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`

- name: Download Pluginval
working-directory: ${{ env.BUILD_DIR }}
shell: bash
run: |
curl -LO "https://github.com/Tracktion/pluginval/releases/download/v1.0.3/pluginval_${{ matrix.name }}.zip"
7z x pluginval_${{ matrix.name }}.zip
working-directory: ${{ env.BUILD_DIR }}
shell: bash
run: |
curl -LO "https://github.com/Tracktion/pluginval/releases/download/v1.0.3/pluginval_${{ matrix.name }}.zip"
7z x pluginval_${{ matrix.name }}.zip
- name: Run Pluginval (Synth)
working-directory: ${{ env.BUILD_DIR }}
Expand All @@ -101,7 +101,7 @@ jobs:
${{ matrix.pluginval-binary }} --strictness-level 10 --verbose --validate "${{ env.SYNTH_VST3_PATH }}"

- name: Run Pluginval (Effect)
working-directory: ${{ env.BUILD_DIR }}
shell: bash
run:
${{ matrix.pluginval-binary }} --strictness-level 10 --verbose --validate "${{ env.EFFECT_VST3_PATH }}"
working-directory: ${{ env.BUILD_DIR }}
shell: bash
run:
${{ matrix.pluginval-binary }} --strictness-level 10 --verbose --validate "${{ env.EFFECT_VST3_PATH }}"

0 comments on commit 011779e

Please sign in to comment.