From 22e80b4a5d2cdeecff13582cfdf4ff894a2c3c2b Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Sat, 4 Feb 2023 17:25:38 +0100 Subject: [PATCH] Simplify run api server --- .github/workflows/contracts.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/contracts.yaml b/.github/workflows/contracts.yaml index 255719f..ae35310 100644 --- a/.github/workflows/contracts.yaml +++ b/.github/workflows/contracts.yaml @@ -58,12 +58,8 @@ jobs: pip install -r requirements.txt - name: Run API server - if: matrix.os != 'windows-latest' run: flask run & - - - name: Run API server - if: matrix.os == 'windows-latest' - run: Start-Process -NoNewWindow flask -ArgumentList 'run' + shell: bash - name: Setup specmatic uses: airslate-oss/setup-specmatic@v1