flask/.github/workflows/main.yml
Andrii Labych a6212ed1b4
umain.yml
2025-03-30 14:52:34 +03:00

30 lines
527 B
YAML

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 -r requirements/dev.txt
pip install pytest
- name: Run tests
run: |
python -m pytest tests