mirror of
https://github.com/actions/setup-python.git
synced 2026-01-21 11:38:31 +00:00
* Upgrade @actions dependencies to Node 24 compatible versions Upgrades the following @actions packages: - @actions/cache: ^4.0.3 → ^5.0.1 - @actions/core: ^1.10.0 → ^2.0.1 - @actions/exec: ^1.1.0 → ^2.0.0 - @actions/http-client: ^2.2.3 → ^3.0.0 - @actions/io: ^1.0.2 → ^2.0.0 License updates: - Add blueoak-1.0.0 to allowed licenses (new transitive dependency: sax) - Add @actions/http-client to reviewed licenses (MIT licensed but detected as 'other') Also ran npm audit fix to resolve vulnerabilities. * update patch version * upgrade actions/checkout from v5 to v6 * check failures fix * revert the pinned pipenv version * check failure fix * npm run build --------- Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com>
97 lines
2.4 KiB
YAML
97 lines
2.4 KiB
YAML
name: e2e tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test-setup-python:
|
|
name: Test setup-python
|
|
runs-on: ${{ matrix.operating-system }}
|
|
strategy:
|
|
matrix:
|
|
operating-system:
|
|
[
|
|
windows-latest,
|
|
ubuntu-22.04,
|
|
ubuntu-22.04-arm,
|
|
ubuntu-latest,
|
|
ubuntu-24.04-arm,
|
|
macos-latest,
|
|
macos-15-intel
|
|
]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Run with setup-python 3.9.13
|
|
uses: ./
|
|
with:
|
|
python-version: 3.9.13
|
|
- name: Verify 3.9.13
|
|
run: python __tests__/verify-python.py 3.9.13
|
|
|
|
- name: Run with setup-python 3.10.11
|
|
uses: ./
|
|
with:
|
|
python-version: 3.10.11
|
|
- name: Verify 3.10.11
|
|
run: python __tests__/verify-python.py 3.10.11
|
|
|
|
- name: Run with setup-python 3.11.9
|
|
uses: ./
|
|
with:
|
|
python-version: 3.11.9
|
|
- name: Verify 3.11.9
|
|
run: python __tests__/verify-python.py 3.11.9
|
|
|
|
- name: Run with setup-python 3.12.7
|
|
uses: ./
|
|
with:
|
|
python-version: 3.12.7
|
|
- name: Verify 3.12.7
|
|
run: python __tests__/verify-python.py 3.12.7
|
|
|
|
- name: Run with setup-python 3.13.0
|
|
uses: ./
|
|
with:
|
|
python-version: 3.13.0
|
|
- name: Verify 3.13.0
|
|
run: python __tests__/verify-python.py 3.13.0
|
|
|
|
- name: Run with setup-python 3.13
|
|
id: cp313
|
|
uses: ./
|
|
with:
|
|
python-version: '3.13'
|
|
- name: Verify 3.13
|
|
run: python __tests__/verify-python.py 3.13
|
|
- name: Run python-path sample 3.13
|
|
run: pipx run --python '${{ steps.cp313.outputs.python-path }}' nox --version
|
|
|
|
- name: Run with setup-python ==3.13
|
|
uses: ./
|
|
with:
|
|
python-version: '==3.13'
|
|
- name: Verify ==3.13
|
|
run: python __tests__/verify-python.py 3.13
|
|
|
|
- name: Run with setup-python <3.13
|
|
uses: ./
|
|
with:
|
|
python-version: '<3.13'
|
|
- name: Verify <3.13
|
|
run: python __tests__/verify-python.py 3.12
|
|
|
|
- name: Test Raw Endpoint Access
|
|
run: |
|
|
curl -L https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json | jq empty
|
|
shell: bash
|