2023-08-13 03:23:59 +02:00
|
|
|
name: Python Tests
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
2023-08-19 16:19:54 +02:00
|
|
|
env:
|
2023-08-19 16:28:11 +02:00
|
|
|
MONGO_URI: justtotes
|
2023-08-19 16:19:54 +02:00
|
|
|
NOVA_KEY: ${{ secrets.NOVA_KEY }}
|
|
|
|
|
2023-08-13 03:23:59 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
2023-08-20 12:20:18 +02:00
|
|
|
python-version: 3.x
|
2023-08-13 03:23:59 +02:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt
|
2023-08-19 16:22:50 +02:00
|
|
|
pip install uvicorn
|
2023-08-17 13:29:50 +02:00
|
|
|
|
2023-08-20 12:29:32 +02:00
|
|
|
- name: Start API server & run tests!
|
2023-08-13 03:23:59 +02:00
|
|
|
run: |
|
|
|
|
python run
|
2023-08-20 12:29:32 +02:00
|
|
|
|