/
nevers
/
hackINTERPOL
Обзор
Документация
Войти
/
nevers
/
hackINTERPOL
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
.gitverse/workflows/ci.yml
41 строка
819 B
nevers
update .gitverse/workflows/ci.yml
13 янв 2026, 17:36
13 янв 2026, 17:36
42b92fe
Код
Авторство
О чём код?
name: CI on: push: branches: [main, master] pull_request: branches: [main, master] jobs: test: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.11", "3.12"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt pip install pytest - name: Install package run: | pip install -e . - name: Run ruff run: | pip install ruff ruff check src/ tests/ - name: Run pytest run: | pytest -v