Bump actions/checkout from 5.0.0 to 6.0.0 #220
Workflow file for this run
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
| # Generated from: | |
| # https://github.com/zopefoundation/meta/tree/master/config/pure-python | |
| # plone.autoinclude has a really specific test setup, and can only really be | |
| # tested on its own, not on Jenkins in combination with other plone packages. | |
| name: Unit/integration | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| schedule: | |
| - cron: '13 7 * * 0' # run once a week on Sunday | |
| # Allow to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| config: | |
| # [Python version, tox env] | |
| - ["3.10", "lint", "ubuntu-latest"] | |
| - ["3.10", "py310-unit", "ubuntu-latest"] | |
| - ["3.11", "py311-unit", "ubuntu-latest"] | |
| - ["3.12", "py312-unit", "ubuntu-latest"] | |
| - ["3.13", "py313-unit", "ubuntu-latest"] | |
| - ["3.10", "py310-integration", "ubuntu-latest"] | |
| - ["3.11", "py311-integration", "ubuntu-latest"] | |
| - ["3.12", "py312-integration", "ubuntu-latest"] | |
| - ["3.13", "py313-integration", "ubuntu-latest"] | |
| - ["3.13", "buildout", "ubuntu-latest"] | |
| - ["3.13", "buildout5", "ubuntu-latest"] | |
| - ["3.10", "coverage", "ubuntu-latest"] | |
| runs-on: ${{ matrix.config[2] }} | |
| name: ${{ matrix.config[1] }} | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Set up Python | |
| uses: actions/[email protected] | |
| with: | |
| python-version: ${{ matrix.config[0] }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install "tox >= 4" | |
| - name: Test | |
| run: tox -e ${{ matrix.config[1] }} | |
| - name: Coverage | |
| if: matrix.config[1] == 'coverage' | |
| run: | | |
| pip install coveralls coverage-python-version | |
| coveralls --service=github | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |