mirror of
				https://git.mirrors.martin98.com/https://github.com/actions/setup-python
				synced 2025-10-31 13:11:09 +08:00 
			
		
		
		
	 2652534ead
			
		
	
	
		2652534ead
		
			
		
	
	
	
	
		
			
			This allows to specify version like `3.11` or `pypy3.10` in workflows before those versions are released. This lessen the burden for users of `setup-python` by not having to modify their workflow twice: once when a pre-release is available (e.g. `3.11-dev`) and once when the first stable release is published (e.g. `3.11`)
		
			
				
	
	
		
			256 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			256 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Validate Python e2e
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - main
 | |
|     paths-ignore:
 | |
|       - '**.md'
 | |
|   pull_request:
 | |
|     paths-ignore:
 | |
|       - '**.md'
 | |
|   schedule:
 | |
|     - cron: 30 3 * * *
 | |
|   workflow_dispatch:
 | |
| 
 | |
| jobs:
 | |
|   setup-versions-from-manifest:
 | |
|     name: Setup ${{ matrix.python }} ${{ matrix.os }}
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os: [macos-latest, windows-latest, ubuntu-18.04, ubuntu-20.04]
 | |
|         python: [3.5.4, 3.6.7, 3.7.5, 3.8.1]
 | |
|     steps:
 | |
|     - name: Checkout
 | |
|       uses: actions/checkout@v3
 | |
| 
 | |
|     - name: setup-python ${{ matrix.python }}
 | |
|       id: setup-python
 | |
|       uses: ./
 | |
|       with:
 | |
|         python-version: ${{ matrix.python }}
 | |
| 
 | |
|     - name: Check python-path
 | |
|       run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}'
 | |
|       shell: bash
 | |
| 
 | |
|     - name: Validate version
 | |
|       run: |
 | |
|         $pythonVersion = (python --version)
 | |
|         if ("Python ${{ matrix.python }}" -ne "$pythonVersion"){
 | |
|           Write-Host "The current version is $pythonVersion; expected version is ${{ matrix.python }}"
 | |
|           exit 1
 | |
|         }
 | |
|         $pythonVersion
 | |
|       shell: pwsh
 | |
| 
 | |
|     - name: Run simple code
 | |
|       run: python -c 'import math; print(math.factorial(5))'
 | |
| 
 | |
|   setup-versions-from-file:
 | |
|     name: Setup ${{ matrix.python }} ${{ matrix.os }} version file
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os: [macos-latest, windows-latest, ubuntu-18.04, ubuntu-20.04]
 | |
|         python: [3.5.4, 3.6.7, 3.7.5, 3.8.1]
 | |
|     steps:
 | |
|     - name: Checkout
 | |
|       uses: actions/checkout@v3
 | |
| 
 | |
|     - name: build-version-file ${{ matrix.python }}
 | |
|       run: echo ${{ matrix.python }} > .python-version
 | |
| 
 | |
|     - name: setup-python ${{ matrix.python }}
 | |
|       id: setup-python
 | |
|       uses: ./
 | |
|       with:
 | |
|         python-version-file: '.python-version'
 | |
| 
 | |
|     - name: Check python-path
 | |
|       run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}'
 | |
|       shell: bash
 | |
| 
 | |
|     - name: Validate version
 | |
|       run: |
 | |
|         $pythonVersion = (python --version)
 | |
|         if ("Python ${{ matrix.python }}" -ne "$pythonVersion"){
 | |
|           Write-Host "The current version is $pythonVersion; expected version is ${{ matrix.python }}"
 | |
|           exit 1
 | |
|         }
 | |
|         $pythonVersion
 | |
|       shell: pwsh
 | |
| 
 | |
|     - name: Run simple code
 | |
|       run: python -c 'import math; print(math.factorial(5))'
 | |
| 
 | |
|   setup-pre-release-version-from-manifest:
 | |
|     name: Setup 3.9.0-beta.4 ${{ matrix.os }}
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os: [macos-latest, windows-latest, ubuntu-18.04, ubuntu-20.04]
 | |
|     steps:
 | |
|     - name: Checkout
 | |
|       uses: actions/checkout@v3
 | |
| 
 | |
|     - name: setup-python 3.9.0-beta.4
 | |
|       id: setup-python
 | |
|       uses: ./
 | |
|       with:
 | |
|         python-version: '3.9.0-beta.4'
 | |
| 
 | |
|     - name: Check python-path
 | |
|       run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}'
 | |
|       shell: bash
 | |
| 
 | |
|     - name: Validate version
 | |
|       run: |
 | |
|         $pythonVersion = (python --version)
 | |
|         if ("Python 3.9.0b4" -ne "$pythonVersion"){
 | |
|           Write-Host "The current version is $pythonVersion; expected version is 3.9.0b4"
 | |
|           exit 1
 | |
|         }
 | |
|         $pythonVersion
 | |
|       shell: pwsh
 | |
| 
 | |
|     - name: Run simple code
 | |
|       run: python -c 'import math; print(math.factorial(5))'
 | |
| 
 | |
|   setup-dev-version:
 | |
|     name: Setup 3.9-dev ${{ matrix.os }}
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os: [macos-latest, windows-latest, ubuntu-latest]
 | |
|     steps:
 | |
|     - name: Checkout
 | |
|       uses: actions/checkout@v3
 | |
| 
 | |
|     - name: setup-python 3.9-dev
 | |
|       id: setup-python
 | |
|       uses: ./
 | |
|       with:
 | |
|         python-version: '3.9-dev'
 | |
| 
 | |
|     - name: Check python-path
 | |
|       run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}'
 | |
|       shell: bash
 | |
| 
 | |
|     - name: Validate version
 | |
|       run: ${{ startsWith(steps.setup-python.outputs.python-version, '3.9.') }}
 | |
|       shell: bash
 | |
| 
 | |
|     - name: Run simple code
 | |
|       run: python -c 'import math; print(math.factorial(5))'
 | |
| 
 | |
|   setup-prerelease-version:
 | |
|     name: Setup 3.12 ${{ matrix.os }}
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os: [macos-latest, windows-latest, ubuntu-latest]
 | |
|     steps:
 | |
|     - name: Checkout
 | |
|       uses: actions/checkout@v3
 | |
| 
 | |
|     - name: setup-python 3.12
 | |
|       id: setup-python
 | |
|       uses: ./
 | |
|       with:
 | |
|         python-version: '3.12'
 | |
|         allow-prereleases: true
 | |
| 
 | |
|     - name: Check python-path
 | |
|       run: ./__tests__/check-python-path.sh '${{ steps.setup-python.outputs.python-path }}'
 | |
|       shell: bash
 | |
| 
 | |
|     - name: Validate version
 | |
|       run: ${{ startsWith(steps.setup-python.outputs.python-version, '3.12.') }}
 | |
|       shell: bash
 | |
| 
 | |
|     - name: Run simple code
 | |
|       run: python -c 'import math; print(math.factorial(5))'
 | |
| 
 | |
|   setup-versions-noenv:
 | |
|     name: Setup ${{ matrix.python }} ${{ matrix.os }} (noenv)
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os: [macos-latest, windows-latest, ubuntu-18.04, ubuntu-20.04]
 | |
|         python: ["3.7", "3.8", "3.9", "3.10"]
 | |
|     steps:
 | |
|     - name: Checkout
 | |
|       uses: actions/checkout@v3
 | |
| 
 | |
|     - name: setup-python ${{ matrix.python }}
 | |
|       id: setup-python
 | |
|       uses: ./
 | |
|       with:
 | |
|         python-version: ${{ matrix.python }}
 | |
|         update-environment: false
 | |
| 
 | |
|     - name: Python version
 | |
|       run: ${{ steps.setup-python.outputs.python-path }} --version
 | |
| 
 | |
|     - name: Run simple code
 | |
|       run: ${{ steps.setup-python.outputs.python-path }} -c 'import math; print(math.factorial(5))'
 | |
| 
 | |
|   check-latest:
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os: [ubuntu-latest, windows-latest, macos-latest]
 | |
|         python-version: ["3.8", "3.9", "3.10"]
 | |
|     steps:
 | |
|       - uses: actions/checkout@v3
 | |
|       - name: Setup Python and check latest
 | |
|         uses: ./
 | |
|         with:
 | |
|           python-version: ${{ matrix.python-version }}
 | |
|           check-latest: true
 | |
|       - name: Validate version
 | |
|         run: |
 | |
|           $pythonVersion = (python --version)
 | |
|           if ("$pythonVersion" -NotMatch "${{ matrix.python-version }}"){
 | |
|             Write-Host "The current version is $pythonVersion; expected version is ${{ matrix.python-version }}"
 | |
|             exit 1
 | |
|           }
 | |
|           $pythonVersion
 | |
|         shell: pwsh
 | |
| 
 | |
|   setup-python-multiple-python-versions:
 | |
|     runs-on: ${{ matrix.os }}
 | |
|     strategy:
 | |
|       fail-fast: false
 | |
|       matrix:
 | |
|         os: [ubuntu-latest, windows-latest, macos-latest]
 | |
|     steps:
 | |
|       - uses: actions/checkout@v3
 | |
|       - name: Setup Python and check latest
 | |
|         uses: ./
 | |
|         with:
 | |
|           python-version: |
 | |
|               3.7
 | |
|               3.8
 | |
|               3.9
 | |
|               3.10
 | |
|           check-latest: true
 | |
|       - name: Validate version
 | |
|         run: |
 | |
|           $pythonVersion = (python --version)
 | |
|           if ("$pythonVersion" -NotMatch "3.10"){
 | |
|             Write-Host "The current version is $pythonVersion; expected version is 3.10"
 | |
|             exit 1
 | |
|           }
 | |
|           $pythonVersion
 | |
|         shell: pwsh
 |