mirror of
https://github.com/actions/setup-python.git
synced 2024-11-22 06:26:25 +00:00
0b93645e9f
* update ci workflows with latest versions and added macos-13 * updated document with latest versions
113 lines
3.1 KiB
YAML
113 lines
3.1 KiB
YAML
name: e2e tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test-setup-python-older:
|
|
name: Test setup-python old versions
|
|
runs-on: ${{ matrix.operating-system }}
|
|
strategy:
|
|
matrix:
|
|
operating-system:
|
|
[ubuntu-20.04, ubuntu-22.04, windows-latest, macos-latest, macos-13]
|
|
python: [3.8.10, 3.8.18]
|
|
exclude:
|
|
- operating-system: ubuntu-22.04
|
|
python: '3.8.10'
|
|
- operating-system: macos-latest
|
|
python: '3.8.18'
|
|
- operating-system: windows-latest
|
|
python: '3.8.18'
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run with setup-python ${{ matrix.python }}
|
|
id: setup-python
|
|
uses: ./
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
- name: Verify ${{ matrix.python }}
|
|
run: python __tests__/verify-python.py ${{ matrix.python }}
|
|
test-setup-python:
|
|
name: Test setup-python
|
|
runs-on: ${{ matrix.operating-system }}
|
|
strategy:
|
|
matrix:
|
|
operating-system:
|
|
[ubuntu-20.04, windows-latest, ubuntu-22.04, macos-latest, macos-13]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- 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.9.13
|
|
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
|