/
githubmirror
/
distro
Обзор
Документация
Войти
/
githubmirror
/
distro
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/ci.yaml
87 строк
2 KB
dependabot[bot]
Actions(deps): Bump actions/checkout from 5 to 7
22 июл 2026, 19:38
22 июл 2026, 19:38
3fba7d3
Код
Авторство
О чём код?
name: CI on: - push - pull_request jobs: lint: name: Lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v7 with: python-version: 3.x - name: Install tox run: python -m pip install tox - name: Run tox run: tox -e lint test: name: Python ${{ matrix.python }} runs-on: ${{ matrix.os }} strategy: matrix: os: - "ubuntu-latest" python: - "3.8" - "3.9" - "3.10" - "3.11" - "3.12" - "3.13" - "3.14" include: - os: "ubuntu-22.04" python: "3.7" - os: "ubuntu-22.04" python: "pypy-3.10" - os: "macos-latest" python: "3.12" steps: - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v7 with: python-version: ${{ matrix.python }} - name: Install tox run: python -m pip install tox - name: Run tox run: tox -e py - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 with: files: .coverage windows: name: Windows runs-on: windows-latest steps: - uses: actions/checkout@v7 - uses: codecov/codecov-action@v3 - name: Set up Python uses: actions/setup-python@v7 with: python-version: 3.x - name: Install tox run: python -m pip install tox - name: Run tox run: tox -e py