Bump actions/setup-python from 6 to 7 (#2033) #4086
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: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| pull_request: | |
| branches: | |
| - master | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Uncommitted doc changes | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - python-version: "3.13" | |
| plone-version: "6.2" | |
| steps: | |
| # git checkout | |
| - uses: actions/checkout@v7 | |
| - name: Install uv + caching | |
| uses: astral-sh/setup-uv@v8.3.2 | |
| with: | |
| enable-cache: true | |
| python-version: ${{ matrix.python-version }} | |
| # Run tests | |
| - name: Install dependencies | |
| run: make test | |
| env: | |
| zope_i18n_compile_mo_files: True | |
| # test no uncommitted changes | |
| - name: test no uncommitted changes | |
| run: ./test-no-uncommitted-doc-changes | |
| env: | |
| PYTHON_VERSION: ${{ matrix.python-version }} | |
| PLONE_VERSION: ${{ matrix.plone-version }} |