Skip to content

Merge pull request #2 from Qomserver/cursor/prepare-project-for-produ… #3

Merge pull request #2 from Qomserver/cursor/prepare-project-for-produ…

Merge pull request #2 from Qomserver/cursor/prepare-project-for-produ… #3

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install -r app/requirements.txt
- name: Lint
run: |
black --check app tests
isort --check-only app tests
flake8 app tests
- name: Tests
run: pytest -q