We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5bfc83 commit 0b42206Copy full SHA for 0b42206
1 file changed
.github/test-application.yml
@@ -5,8 +5,6 @@ on: [push, pull_request]
5
jobs:
6
test:
7
runs-on: ubuntu-latest
8
- env:
9
- PORT: 8000
10
11
steps:
12
- name: Checkout code
@@ -15,12 +13,12 @@ jobs:
15
13
- name: Set up Python
16
14
uses: actions/setup-python@v2
17
with:
18
- python-version: '3.x'
+ python-version: '3.11'
19
20
- name: Install dependencies
21
run: |
22
python -m pip install --upgrade pip
23
pip install -r requirements.txt
24
25
- name: Start the app
26
- run: uvicorn main:app --host 0.0.0.0 --port ${{ env.PORT }}
+ run: python app.py
0 commit comments