nova-api/.github/workflows/tests.yml

33 lines
640 B
YAML
Raw Normal View History

2023-08-13 03:23:59 +02:00
name: Python Tests
on:
pull_request:
types: [review_requested]
2023-08-13 03:23:59 +02:00
jobs:
test:
runs-on: ubuntu-latest
env:
MONGO_URI: ${{ secrets.MONGO_URI }}
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