2022-12-22 04:17:13 -05:00
|
|
|
name: e2e tests
|
|
|
|
|
2020-05-01 12:52:58 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-07-14 10:05:12 -04:00
|
|
|
- main
|
2020-05-01 12:52:58 -04:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2024-06-27 14:18:32 -04:00
|
|
|
workflow_dispatch:
|
2023-03-09 05:44:56 -05:00
|
|
|
|
2019-07-11 16:15:37 -04:00
|
|
|
jobs:
|
2022-12-22 04:17:13 -05:00
|
|
|
test-setup-python:
|
|
|
|
name: Test setup-python
|
2019-07-11 16:15:37 -04:00
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-11-07 07:10:21 -05:00
|
|
|
operating-system: [ubuntu-20.04, windows-latest]
|
2019-07-25 22:59:00 -04:00
|
|
|
steps:
|
2023-03-09 05:44:56 -05:00
|
|
|
- name: Checkout
|
2023-11-08 05:16:06 -05:00
|
|
|
uses: actions/checkout@v4
|
2019-07-23 13:22:18 -04:00
|
|
|
|
2024-06-27 14:18:32 -04:00
|
|
|
- name: Run with setup-python 3.8
|
2023-03-09 05:44:56 -05:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-27 14:18:32 -04:00
|
|
|
python-version: 3.8
|
|
|
|
- name: Verify 3.8
|
|
|
|
run: python __tests__/verify-python.py 3.8
|
2020-05-01 12:52:58 -04:00
|
|
|
|
2024-06-27 14:18:32 -04:00
|
|
|
- name: Run with setup-python 3.8.10
|
2023-03-09 05:44:56 -05:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-27 14:18:32 -04:00
|
|
|
python-version: 3.8.10
|
|
|
|
- name: Verify 3.8.10
|
|
|
|
run: python __tests__/verify-python.py 3.8.10
|
2020-05-01 12:52:58 -04:00
|
|
|
|
2024-06-27 14:18:32 -04:00
|
|
|
- name: Run with setup-python 3.9.13
|
2023-03-09 05:44:56 -05:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-27 14:18:32 -04:00
|
|
|
python-version: 3.9.13
|
|
|
|
- name: Verify 3.9.13
|
|
|
|
run: python __tests__/verify-python.py 3.9.13
|
2022-11-07 07:10:21 -05:00
|
|
|
|
2024-06-27 14:18:32 -04:00
|
|
|
- name: Run with setup-python 3.9.13
|
2023-03-09 05:44:56 -05:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-27 14:18:32 -04:00
|
|
|
python-version: 3.10.11
|
|
|
|
- name: Verify 3.10.11
|
|
|
|
run: python __tests__/verify-python.py 3.10.11
|
2020-05-01 12:52:58 -04:00
|
|
|
|
2024-06-27 14:18:32 -04:00
|
|
|
- name: Run with setup-python 3.11.9
|
2023-03-09 05:44:56 -05:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-27 14:18:32 -04:00
|
|
|
python-version: 3.11.9
|
|
|
|
- name: Verify 3.11.9
|
|
|
|
run: python __tests__/verify-python.py 3.11.9
|
2020-05-01 12:52:58 -04:00
|
|
|
|
2024-06-27 14:18:32 -04:00
|
|
|
- name: Run with setup-python 3.12.4
|
2023-03-09 05:44:56 -05:00
|
|
|
uses: ./
|
|
|
|
with:
|
2024-06-27 14:18:32 -04:00
|
|
|
python-version: 3.12.4
|
|
|
|
- name: Verify 3.12.4
|
|
|
|
run: python __tests__/verify-python.py 3.12.4
|
2022-05-23 14:59:37 -04:00
|
|
|
|
2023-03-09 05:44:56 -05:00
|
|
|
- name: Run with setup-python 3.10
|
|
|
|
id: cp310
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: '3.10'
|
|
|
|
- name: Verify 3.10
|
|
|
|
run: python __tests__/verify-python.py 3.10
|
|
|
|
- name: Run python-path sample 3.10
|
|
|
|
run: pipx run --python '${{ steps.cp310.outputs.python-path }}' nox --version
|
2023-06-28 16:02:44 -04:00
|
|
|
|
|
|
|
- name: Run with setup-python ==3.8
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: '==3.8'
|
|
|
|
- name: Verify ==3.8
|
|
|
|
run: python __tests__/verify-python.py 3.8
|
|
|
|
|
|
|
|
- name: Run with setup-python <3.11
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: '<3.11'
|
|
|
|
- name: Verify <3.11
|
|
|
|
run: python __tests__/verify-python.py 3.10
|
2024-03-26 09:56:51 -04:00
|
|
|
- name: Test Raw Endpoint Access
|
|
|
|
run: |
|
|
|
|
curl -L https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json | jq empty
|
|
|
|
shell: bash
|