Skip to content

Commit

Permalink
ci - Add dependency dockerize to ubuntu-support
Browse files Browse the repository at this point in the history
  • Loading branch information
xAlessandroC committed Jul 16, 2023
1 parent fde1f92 commit b00c161
Showing 1 changed file with 21 additions and 19 deletions.
40 changes: 21 additions & 19 deletions .github/workflows/multi-platform-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@ on:


jobs:
# ubuntu-support:
# runs-on: ubuntu-22.04
# steps:
# - name: Set up Python 3.10.9
# uses: actions/[email protected]
# with:
# python-version: 3.10.9
# - name: Print the version of Python # DEBUG
# run: python --version
# - name: Checkout the repository
# uses: actions/[email protected]
# - 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/[email protected]
with:
python-version: 3.10.9
- name: Print the version of Python # DEBUG
run: python --version
- name: Checkout the repository
uses: actions/[email protected]
- 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
Expand Down Expand Up @@ -73,6 +73,8 @@ jobs:

dockerize:
runs-on: ubuntu-22.04
needs:
- ubuntu-support
steps:
- name: Set up Python 3.10.9
uses: actions/[email protected]
Expand Down

0 comments on commit b00c161

Please sign in to comment.