diff --git a/.github/workflows/multi-platform-workflow.yml b/.github/workflows/multi-platform-workflow.yml index 13be603..b61e952 100644 --- a/.github/workflows/multi-platform-workflow.yml +++ b/.github/workflows/multi-platform-workflow.yml @@ -11,25 +11,25 @@ on: jobs: - # ubuntu-support: - # runs-on: ubuntu-22.04 - # steps: - # - name: Set up Python 3.10.9 - # uses: actions/setup-python@v4.7.0 - # with: - # python-version: 3.10.9 - # - name: Print the version of Python # DEBUG - # run: python --version - # - name: Checkout the repository - # uses: actions/checkout@v3.5.3 - # - name: Print repo structure # DEBUG - # run: ls -lR - # - name: Install dependencies - # run: pip install -r ./requirements.txt - # - name: Print dependencies # DEBUG - # run: pip freeze - # - name: Run Flask server tests - # run: python -m unittest test/app_test.py + ubuntu-support: + runs-on: ubuntu-22.04 + steps: + - name: Set up Python 3.10.9 + uses: actions/setup-python@v4.7.0 + with: + python-version: 3.10.9 + - name: Print the version of Python # DEBUG + run: python --version + - name: Checkout the repository + uses: actions/checkout@v3.5.3 + - name: Print repo structure # DEBUG + run: ls -lR + - name: Install dependencies + run: pip install -r ./requirements.txt + - name: Print dependencies # DEBUG + run: pip freeze + - name: Run Flask server tests + run: python -m unittest test/app_test.py # windows-support: # runs-on: windows-latest @@ -73,6 +73,8 @@ jobs: dockerize: runs-on: ubuntu-22.04 + needs: + - ubuntu-support steps: - name: Set up Python 3.10.9 uses: actions/setup-python@v4.7.0