Skip to content

Commit

Permalink
test run main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nwanoch authored Jul 20, 2024
1 parent 3b20746 commit 85cd06e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,14 @@ jobs:
run: cp .env.sample .env

- name: Run app
run: python3 main.py
run: |
python3 main.py
if [ $? -eq 0 ]; then
echo "main.py started successfully"
else
echo "main.py failed to start"
exit 1
fi
# - name: Run migrations
# run: |
Expand Down

0 comments on commit 85cd06e

Please sign in to comment.