Skip to content

Commit

Permalink
Update test-windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga authored Nov 12, 2024
1 parent 065c8d6 commit 8659532
Showing 1 changed file with 8 additions and 20 deletions.
28 changes: 8 additions & 20 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@ jobs:
metacall faas --version | findstr /R "^v.*\..*\..*"
IF %ERRORLEVEL% NEQ 0 exit /B 1
- name: Uninstall Test
shell: cmd
env:
METACALL_INSTALL_DEBUG: 1
run: |
powershell -NoProfile -ExecutionPolicy unrestricted ./install.ps1 -Uninstall
install-path-with-whitespaces:
name: Install MetaCall via Path With Whitespaces
runs-on: windows-latest
Expand Down Expand Up @@ -128,28 +135,9 @@ jobs:
metacall faas --version | findstr /R "^v.*\..*\..*"
IF %ERRORLEVEL% NEQ 0 exit /B 1
uninstall-default:
name: Uninstall MetaCall via Default Uninstallation
needs: [install-default]
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Uninstall MetaCall
- name: Uninstall Test
shell: cmd
env:
METACALL_INSTALL_DEBUG: 1
run: |
powershell -NoProfile -ExecutionPolicy unrestricted ./install.ps1 -Uninstall
uninstall-path-with-whitespaces:
name: Uninstall Metacall from Path with Whitespaces
runs-on: windows-latest
needs: [install-path-with-whitespaces]
steps:
- uses: actions/checkout@v4
- name: Uninstall MetaCall from Path with Whitespaces
shell: cmd
env:
METACALL_INSTALL_DEBUG: 1
run: |
powershell -NoProfile -ExecutionPolicy unrestricted ./install.ps1 -Uninstall -InstallDir '%cd%\install folder with spaces'

0 comments on commit 8659532

Please sign in to comment.