ZAIDX11's picture
Add files using upload-large-folder tool
bb85593 verified
raw
history blame contribute delete
533 Bytes
name: Backend CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r backend/requirements.txt
- name: Run tests
run: |
pytest backend/tests/