Generate digital attestations for PyPI (PEP 740) by hugovk · Pull Request #135 · python/cherry-picker

Expand Up @@ -2,6 +2,9 @@ name: tests
on: [push, pull_request, workflow_dispatch]
permissions: contents: read
env: FORCE_COLOR: 1
Expand All @@ -13,24 +16,29 @@ jobs: matrix: python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] os: [windows-latest, macos-latest, ubuntu-latest]
steps: - uses: actions/checkout@v4 with: # fetch all branches and tags # ref actions/checkout#448 fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} allow-prereleases: true cache: pip cache-dependency-path: pyproject.toml
- name: Install tox run: | python -m pip install tox
- name: Run tests run: tox -e py
- name: Upload coverage uses: codecov/codecov-action@v4 with: Expand Down