2022-12-22 17:17:13 +08:00
|
|
|
name: e2e tests
|
|
|
|
|
2020-05-02 00:52:58 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-07-14 22:05:12 +08:00
|
|
|
- main
|
2020-05-02 00:52:58 +08:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
2023-03-09 18:44:56 +08:00
|
|
|
|
2019-07-12 04:15:37 +08:00
|
|
|
jobs:
|
2022-12-22 17:17:13 +08:00
|
|
|
test-setup-python:
|
|
|
|
name: Test setup-python
|
2019-07-12 04:15:37 +08:00
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-11-07 20:10:21 +08:00
|
|
|
operating-system: [ubuntu-20.04, windows-latest]
|
2019-07-26 10:59:00 +08:00
|
|
|
steps:
|
2023-03-09 18:44:56 +08:00
|
|
|
- name: Checkout
|
2023-11-08 18:16:06 +08:00
|
|
|
uses: actions/checkout@v4
|
2019-07-24 01:22:18 +08:00
|
|
|
|
2023-03-09 18:44:56 +08:00
|
|
|
- name: Run with setup-python 3.5
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.5
|
|
|
|
- name: Verify 3.5
|
|
|
|
run: python __tests__/verify-python.py 3.5
|
2020-05-02 00:52:58 +08:00
|
|
|
|
2023-03-09 18:44:56 +08:00
|
|
|
- name: Run with setup-python 3.6
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.6
|
|
|
|
- name: Verify 3.6
|
|
|
|
run: python __tests__/verify-python.py 3.6
|
2020-05-02 00:52:58 +08:00
|
|
|
|
2023-03-09 18:44:56 +08:00
|
|
|
- name: Run with setup-python 3.7
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.7
|
|
|
|
- name: Verify 3.7
|
|
|
|
run: python __tests__/verify-python.py 3.7
|
2020-05-02 00:52:58 +08:00
|
|
|
|
2023-03-09 18:44:56 +08: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
|
2022-11-07 20:10:21 +08:00
|
|
|
|
2023-03-09 18:44:56 +08:00
|
|
|
- name: Run with setup-python 3.7.5
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.7.5
|
|
|
|
- name: Verify 3.7.5
|
|
|
|
run: python __tests__/verify-python.py 3.7.5
|
2020-05-02 00:52:58 +08:00
|
|
|
|
2023-03-09 18:44:56 +08:00
|
|
|
- name: Run with setup-python 3.6.7
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.6.7
|
|
|
|
- name: Verify 3.6.7
|
|
|
|
run: python __tests__/verify-python.py 3.6.7
|
2020-05-02 00:52:58 +08:00
|
|
|
|
2023-03-09 18:44:56 +08:00
|
|
|
- name: Run with setup-python 3.8.1
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
python-version: 3.8.1
|
|
|
|
- name: Verify 3.8.1
|
|
|
|
run: python __tests__/verify-python.py 3.8.1
|
2022-05-24 02:59:37 +08:00
|
|
|
|
2023-03-09 18:44:56 +08: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-29 04:02:44 +08: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
|