This commit is contained in:
Andrii Labych 2025-03-30 14:40:37 +03:00 committed by GitHub
parent f61172b8dd
commit b998c78591
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

27
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,27 @@
name: Flask CI
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Run tests
run: |
pytest tests