File tree Expand file tree Collapse file tree 1 file changed +12
-27
lines changed Expand file tree Collapse file tree 1 file changed +12
-27
lines changed Original file line number Diff line number Diff line change @@ -45,47 +45,32 @@ jobs:
45
45
python --version 2>&1 | grep -F "${{ matrix.python-version }}"
46
46
test "$(python3 -m pip --version)" = "$(pip --version)"
47
47
48
- test_major_version_installation :
49
- runs-on : ubuntu-latest
50
- container : amazonlinux:2023
51
- steps :
52
- - name : Setup runner
53
- run : |
54
- yum install -y git tar gzip sudo
55
-
56
- - uses : actions/checkout@v3
57
-
58
- - name : Install python
59
- uses : ./
60
- with :
61
- python-version : " 3"
62
-
63
- - name : Test installation
64
- run : |
65
- set -x
66
-
67
- python3 --version 2>&1 | grep -F "3.12.0"
68
-
69
- test_minor_version_installation :
48
+ test_abstract_version_specification :
49
+ strategy :
50
+ fail-fast : false
51
+ matrix :
52
+ include :
53
+ - python-version : " 3"
54
+ installed-python-version : " 3.12.0"
55
+ - python-version : " 3.9"
56
+ installed-python-version : " 3.9.18"
70
57
runs-on : ubuntu-latest
71
58
container : amazonlinux:2023
72
59
steps :
73
60
- name : Setup runner
74
- run : |
75
- yum install -y git tar gzip sudo
61
+ run : yum install -y git tar gzip sudo
76
62
77
63
- uses : actions/checkout@v3
78
64
79
65
- name : Install python
80
66
uses : ./
81
67
with :
82
- python-version : " 3.9 "
68
+ python-version : " ${{ matrix.python-version }} "
83
69
84
70
- name : Test installation
85
71
run : |
86
72
set -x
87
-
88
- python3 --version 2>&1 | grep -F "3.9.18"
73
+ python3 --version 2>&1 | grep -F "${{ matrix.installed-python-version }}"
89
74
90
75
test_pip_installs :
91
76
strategy :
You can’t perform that action at this time.
0 commit comments