Create tests.yml

This commit is contained in:
Game_Time 2023-08-13 06:23:59 +05:00 committed by GitHub
parent 5f13f9b222
commit 251be4f6e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

31
.github/workflows/tests.yml vendored Normal file
View file

@ -0,0 +1,31 @@
name: Python Tests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Start API server
run: |
python run
- name: Wait for API server to start
run: sleep 10 # We can adjust this sleep duration as needed. idk how long the server takes to start
- name: Run tests
run: python tests