diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index ed2cd78..c8c47d9 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -18,6 +18,7 @@ jobs: run: | python -m pip install --upgrade pip pip install -r requirements.txt + pip install -r requirements_dev.txt - name: Start Uvicorn server run: | nohup SETTINGS_MODE=text uvicorn main:app --host 127.0.0.1 --port 8000 & diff --git a/requirements_dev.txt b/requirements_dev.txt index ac53ce0..96f9e49 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -1,3 +1,4 @@ requests pytest -pylint \ No newline at end of file +pylint +requests \ No newline at end of file