File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 91
91
- run : git diff --exit-code
92
92
93
93
tests-unix :
94
- name : tests / ${{ matrix.python }} / ${{ matrix.os }}
94
+ name : tests / ${{ matrix.python.key || matrix.python }} / ${{ matrix.os }}
95
95
runs-on : ${{ matrix.os }}-latest
96
96
97
97
needs : [packaging, determine-changes]
@@ -109,12 +109,14 @@ jobs:
109
109
- " 3.9"
110
110
- " 3.10"
111
111
- " 3.11"
112
+ - key : " 3.12"
113
+ full : " 3.12.0-beta.3"
112
114
113
115
steps :
114
116
- uses : actions/checkout@v3
115
117
- uses : actions/setup-python@v4
116
118
with :
117
- python-version : ${{ matrix.python }}
119
+ python-version : ${{ matrix.python.full || matrix.python }}
118
120
119
121
- name : Install Ubuntu dependencies
120
122
if : matrix.os == 'Ubuntu'
@@ -129,12 +131,12 @@ jobs:
129
131
# Main check
130
132
- name : Run unit tests
131
133
run : >-
132
- nox -s test-${{ matrix.python }} --
134
+ nox -s test-${{ matrix.python.key || matrix.python }} --
133
135
-m unit
134
136
--verbose --numprocesses auto --showlocals
135
137
- name : Run integration tests
136
138
run : >-
137
- nox -s test-${{ matrix.python }} --
139
+ nox -s test-${{ matrix.python.key || matrix.python }} --
138
140
-m integration
139
141
--verbose --numprocesses auto --showlocals
140
142
--durations=5
You can’t perform that action at this time.
0 commit comments