mirror of
https://github.com/actions/setup-python.git
synced 2025-06-24 04:38:00 +02:00
V4 - Add workflow file for publishing releases to immutable action package (#1084)
* add publish immutable action * depricate ubuntu-20.04 * fix check failures * fix check failures on older versions * check failures fix for older versions * check failure fix * check failure fix * compatable version update * compatable version update for ubuntu-22.04 and windows * fix * update e2e tests format * fomat update * updated wording
This commit is contained in:
29
.github/workflows/e2e-tests.yml
vendored
29
.github/workflows/e2e-tests.yml
vendored
@ -16,16 +16,19 @@ jobs:
|
||||
runs-on: ${{ matrix.operating-system }}
|
||||
strategy:
|
||||
matrix:
|
||||
operating-system: [ubuntu-20.04, windows-latest]
|
||||
operating-system: [ubuntu-22.04, windows-latest]
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Run with setup-python 3.6
|
||||
if: ${{ matrix.operating-system == 'windows-latest' }}
|
||||
uses: ./
|
||||
with:
|
||||
python-version: 3.6
|
||||
- name: Verify 3.6
|
||||
if: ${{ matrix.operating-system == 'windows-latest' }}
|
||||
run: python __tests__/verify-python.py 3.6
|
||||
|
||||
- name: Run with setup-python 3.7
|
||||
@ -43,26 +46,50 @@ jobs:
|
||||
run: python __tests__/verify-python.py 3.8
|
||||
|
||||
- name: Run with setup-python 3.7.5
|
||||
if: ${{ matrix.operating-system == 'windows-latest' }}
|
||||
uses: ./
|
||||
with:
|
||||
python-version: 3.7.5
|
||||
- name: Verify 3.7.5
|
||||
if: ${{ matrix.operating-system == 'windows-latest' }}
|
||||
run: python __tests__/verify-python.py 3.7.5
|
||||
|
||||
- name: Run with setup-python 3.6.7
|
||||
if: ${{ matrix.operating-system == 'windows-latest' }}
|
||||
uses: ./
|
||||
with:
|
||||
python-version: 3.6.7
|
||||
- name: Verify 3.6.7
|
||||
if: ${{ matrix.operating-system == 'windows-latest' }}
|
||||
run: python __tests__/verify-python.py 3.6.7
|
||||
|
||||
- name: Run with setup-python 3.8.1
|
||||
if: ${{ matrix.operating-system == 'windows-latest' }}
|
||||
uses: ./
|
||||
with:
|
||||
python-version: 3.8.1
|
||||
- name: Verify 3.8.1
|
||||
if: ${{ matrix.operating-system == 'windows-latest' }}
|
||||
run: python __tests__/verify-python.py 3.8.1
|
||||
|
||||
- name: Run with setup-python 3.7.13
|
||||
if: ${{ matrix.operating-system == 'ubuntu-22.04' }}
|
||||
uses: ./
|
||||
with:
|
||||
python-version: 3.7.13
|
||||
- name: Verify 3.7.13
|
||||
if: ${{ matrix.operating-system == 'ubuntu-22.04' }}
|
||||
run: python __tests__/verify-python.py 3.7.13
|
||||
|
||||
- name: Run with setup-python 3.8.12
|
||||
if: ${{ matrix.operating-system == 'ubuntu-22.04' }}
|
||||
uses: ./
|
||||
with:
|
||||
python-version: 3.8.12
|
||||
- name: Verify 3.8.12
|
||||
if: ${{ matrix.operating-system == 'ubuntu-22.04' }}
|
||||
run: python __tests__/verify-python.py 3.8.12
|
||||
|
||||
- name: Run with setup-python 3.10
|
||||
id: cp310
|
||||
uses: ./
|
||||
|
Reference in New Issue
Block a user