/
deniss_shu
/
SE_FastAPI_Example
Обзор
Документация
Войти
/
deniss_shu
/
SE_FastAPI_Example
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
.gitverse/workflows/ci.yml
34 строки
722 B
deniss_shu
Правки билда
16 май 2026, 20:06
16 май 2026, 20:06
99cd7a5
Код
Авторство
О чём код?
name: CI Pipeline on: push: branches: - '**' workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 - name: Create virtual environment run: python3 -m venv .venv - name: Install dependencies run: .venv/bin/pip install -r requirements.txt - name: Run flake8 linter run: .venv/bin/flake8 . --config=.flake8 - name: Run pytest with JUnit report run: .venv/bin/pytest tests/ --junitxml=report.xml - name: Upload test report artifact uses: actions/upload-artifact@v3 if: always() with: name: test-report path: report.xml