Skip to content

Commit

Permalink
Update ms5.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
eoa21004 authored Oct 31, 2024
1 parent 790c0d9 commit a7576bf
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ms5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pylint
# Pytest is for unit testing your python code. Use this block as is to
# install pytest in the Docker container running the job
Expand All @@ -45,6 +45,12 @@ jobs:
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Build and Run Docker
run: |
docker build -f dockerfile -t doc .
docker run -d -p 5000:5000 doc
# Run pytest on your pulled codebase
- name: Test with pytest
run: |
Expand Down

0 comments on commit a7576bf

Please sign in to comment.