Bump pypa/gh-action-pypi-publish in the actions group across 1 direct… #2361
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: tests | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| schedule: | |
| - cron: "0 8 * * *" | |
| concurrency: | |
| group: tests-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| default-python: "3.12" | |
| minimum-supported-python: "3.8" | |
| jobs: | |
| tests: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"] | |
| include: | |
| - os: windows-latest | |
| python-version: "3.12" | |
| - os: macos-latest | |
| python-version: "3.12" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "pip" | |
| - name: Persistent .pipx_tests/package_cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ github.workspace }}/.pipx_tests/package_cache/${{ matrix.python-version }} | |
| key: pipx-tests-package-cache-${{ runner.os }}-${{ matrix.python-version }} | |
| - name: Install nox | |
| run: python -m pip install nox | |
| - name: Execute Tests | |
| run: nox --error-on-missing-interpreters --non-interactive --session tests-${{ matrix.python-version }} | |
| man: | |
| name: Build man page | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ env.default-python }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ env.default-python }} | |
| cache: "pip" | |
| - name: Install nox | |
| run: python -m pip install nox | |
| - name: Build man page | |
| run: nox --error-on-missing-interpreters --non-interactive --session build_man | |
| - name: Show man page | |
| run: man -l pipx.1 | |
| zipapp: | |
| name: Build zipapp | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout ${{ github.ref }} | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ env.minimum-supported-python }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ env.minimum-supported-python }} | |
| cache: "pip" | |
| - name: Install nox | |
| run: pip install nox | |
| - name: Build zipapp | |
| run: nox --error-on-missing-interpreters --non-interactive --session zipapp | |
| - name: Test zipapp by installing black | |
| run: python ./pipx.pyz install black | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: pipx.pyz | |
| path: pipx.pyz | |
| retention-days: 3 |