From 1718c68c32ea97a6615541731ccf01b04826c07e Mon Sep 17 00:00:00 2001 From: aakritiawasthi Date: Thu, 22 Aug 2024 22:52:06 +0530 Subject: [PATCH] Added tests for faas and deploy for win installation --- .github/workflows/test-windows.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 78160b1..0645cb7 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -18,6 +18,12 @@ jobs: run: | metacall pip install -r test/requirements.txt | findstr "Successfully installed" metacall ./test/requirements.py | findstr "123456" + - name: Deploy Test + run: | + metacall deploy --version | findstr /R "^v.*\..*\..*" + - name: Faas Test + run: | + metacall faas --version | findstr /R "^v.*\..*\..*" install-from-path: name: Install Metacall via Path Installation runs-on: windows-latest @@ -41,3 +47,9 @@ jobs: run: | metacall pip install -r test/requirements.txt | findstr "Successfully installed" metacall ./test/requirements.py | findstr "123456" + - name: Deploy Test + run: | + metacall deploy --version | findstr /R "^v.*\..*\..*" + - name: Faas Test + run: | + metacall faas --version | findstr /R "^v.*\..*\..*"