/
niceSOFT
/
createrepo_c
Обзор
Документация
Войти
/
niceSOFT
/
createrepo_c
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/ci-python.yml
27 строк
724 B
Daniel Alley
Test building from sdist directly
15 июн 2026, 11:15
15 июн 2026, 11:15
88406ce
Код
Авторство
О чём код?
--- name: Python CI on: pull_request jobs: python-build: name: Python Build runs-on: ubuntu-latest container: fedora:latest steps: - uses: actions/checkout@v6 - name: Install dependencies run: | sudo dnf -y install dnf-plugins-core python3-pip sudo dnf -y builddep createrepo_c.spec pip install --upgrade pip pip install pytest build - name: Compile and Install run: pip install . - name: Compile / build both sdist and bdist # exercises different build codepaths - more similar to what cibuildwheel executes run: python3 -m build - name: Test run: pytest --verbose --color=yes tests/python/tests/