2022-12-22 11:17:13 +02:00
|
|
|
name: e2e tests
|
|
|
|
|
2020-05-01 18:52:58 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-07-14 16:05:12 +02:00
|
|
|
- main
|
2020-05-01 18:52:58 +02:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2024-06-27 20:18:32 +02:00
|
|
|
workflow_dispatch:
|
2023-03-09 12:44:56 +02:00
|
|
|
|
2019-07-11 16:15:37 -04:00
|
|
|
jobs:
|
2024-10-24 19:08:22 +05:30
|
|
|
test-setup-python:
|
|
|
|
name: Test setup-python
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
operating-system:
|
2024-12-19 23:33:44 +05:30
|
|
|
[
|
|
|
|
ubuntu-20.04,
|
|
|
|
windows-latest,
|
|
|
|
ubuntu-22.04,
|
|
|
|
ubuntu-latest,
|
|
|
|
macos-latest,
|
|
|
|
macos-13
|
|
|
|
]
|
2024-10-24 19:08:22 +05:30
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
2020-05-01 18:52:58 +02:00
|
|
|
|
2024-06-27 20:18:32 +02:00
|
|
|
- name: Run with setup-python 3.9.13
|
2023-03-09 12:44:56 +02:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-27 20:18:32 +02:00
|
|
|
python-version: 3.9.13
|
|
|
|
- name: Verify 3.9.13
|
|
|
|
run: python __tests__/verify-python.py 3.9.13
|
2022-11-07 13:10:21 +01:00
|
|
|
|
2024-06-27 20:18:32 +02:00
|
|
|
- name: Run with setup-python 3.9.13
|
2023-03-09 12:44:56 +02:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-27 20:18:32 +02:00
|
|
|
python-version: 3.10.11
|
|
|
|
- name: Verify 3.10.11
|
|
|
|
run: python __tests__/verify-python.py 3.10.11
|
2020-05-01 18:52:58 +02:00
|
|
|
|
2024-06-27 20:18:32 +02:00
|
|
|
- name: Run with setup-python 3.11.9
|
2023-03-09 12:44:56 +02:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-27 20:18:32 +02:00
|
|
|
python-version: 3.11.9
|
|
|
|
- name: Verify 3.11.9
|
|
|
|
run: python __tests__/verify-python.py 3.11.9
|
2020-05-01 18:52:58 +02:00
|
|
|
|
2024-10-24 19:08:22 +05:30
|
|
|
- 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
|
2023-03-09 12:44:56 +02:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-10-24 19:08:22 +05:30
|
|
|
python-version: 3.13.0
|
|
|
|
- name: Verify 3.13.0
|
|
|
|
run: python __tests__/verify-python.py 3.13.0
|
2022-05-23 20:59:37 +02:00
|
|
|
|
2024-10-24 19:08:22 +05:30
|
|
|
- name: Run with setup-python 3.13
|
|
|
|
id: cp313
|
2023-03-09 12:44:56 +02:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-10-24 19:08:22 +05:30
|
|
|
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
|
2023-06-28 22:02:44 +02:00
|
|
|
|
2024-10-24 19:08:22 +05:30
|
|
|
- name: Run with setup-python ==3.13
|
2023-06-28 22:02:44 +02:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-10-24 19:08:22 +05:30
|
|
|
python-version: '==3.13'
|
|
|
|
- name: Verify ==3.13
|
|
|
|
run: python __tests__/verify-python.py 3.13
|
2023-06-28 22:02:44 +02:00
|
|
|
|
2024-10-24 19:08:22 +05:30
|
|
|
- name: Run with setup-python <3.13
|
2023-06-28 22:02:44 +02:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-10-24 19:08:22 +05:30
|
|
|
python-version: '<3.13'
|
|
|
|
- name: Verify <3.13
|
|
|
|
run: python __tests__/verify-python.py 3.12
|
2024-03-26 19:26:51 +05:30
|
|
|
- name: Test Raw Endpoint Access
|
|
|
|
run: |
|
|
|
|
curl -L https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json | jq empty
|
|
|
|
shell: bash
|