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