Skip to content

Реализован одновременный запуск FastAPI и бота #32

Реализован одновременный запуск FastAPI и бота

Реализован одновременный запуск FastAPI и бота #32

Workflow file for this run

name: sytle_check
on:
pull_request:
push:
jobs:
check_style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set-up python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependies
run: |
python -m pip install --upgrade pip
pip install ruff==0.7.1
- name: Test style
run: python -m ruff check ./src