/
niceSOFT
/
python3-more-itertools
Обзор
Документация
Войти
/
niceSOFT
/
python3-more-itertools
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/python-app.yml
36 строк
958 B
Bo Bayles
Upgrade GitHub actions, test Python 3.14 release
19 июн 2026, 23:25
19 июн 2026, 23:25
ac375a0
Код
Авторство
О чём код?
name: Python package on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "pypy-3.10"] steps: - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} allow-prereleases: true - name: Run tests run: make coverage - name: Static checks if: "matrix.python-version == '3.10'" run: make requirements check - name: Build docs with sphinx if: "matrix.python-version == '3.10'" run: make docs - name: Build packages if: "matrix.python-version == '3.10'" run: make package - name: Upload packages if: "matrix.python-version == '3.10'" uses: actions/upload-artifact@v7 with: name: more-itertools-packages path: dist/*