/
delbraun
/
AutoRAWCompressor
Обзор
Документация
Войти
/
delbraun
/
AutoRAWCompressor
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
14
CI/CD
Аналитика
Безопасность
master
.github/workflows/ci.yml
38 строк
788 B
Divan Games
release: 0.0.2.13.Alpha — ручная нумерация кадров, пропуски в наборе, pytest/CI
02 июл 2026, 05:28
02 июл 2026, 05:28
b1e03c1
Код
Авторство
О чём код?
name: CI on: push: branches: - master - main pull_request: branches: - master - main jobs: test: runs-on: windows-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Setup Python uses: actions/setup-python@v5 with: python-version: "3.12" cache: pip cache-dependency-path: | requirements.txt requirements-dev.txt - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements-dev.txt - name: Compile check run: python -m py_compile src/autoraw_gui.py src/autoraw_crop.py src/updater.py - name: Run tests run: python -m pytest tests -q