CI: Add python 3.14.0-rc.1 (as experimental python version). #26
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
| # -- TEST-VARIANT: pypy-27 on ubuntu-latest | |
| # BASED ON: test.yml | |
| # DESCRIPTION: Checks for Python 2.7 support and any problems | |
| name: test-pypy27 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ "main", "release/**" ] | |
| pull_request: | |
| types: [opened, reopened, review_requested] | |
| branches: [ "main" ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| # -- DISABLED: continue-on-error: true | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["pypy-2.7"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| cache-dependency-path: 'py.requirements/*.txt' | |
| - name: Install Python package dependencies (step 0) | |
| run: | | |
| python -m pip install -U pip setuptools build wheel | |
| pip --version | |
| - name: Install Python package dependencies (step 1) | |
| run: | | |
| pip install -r py.requirements/ci.github.testing.txt | |
| pip list | |
| - name: Install Python package dependencies (step 2) | |
| run: | | |
| pip install . | |
| - name: Run tests | |
| run: pytest | |
| - name: Upload test reports | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test reports | |
| path: | | |
| build/testing/report.xml | |
| build/testing/report.html | |
| if: ${{ job.status == 'failure' }} | |
| # MAYBE: if: ${{ always() }} |