File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -819,6 +819,10 @@ jobs:
819
819
needs :
820
820
- info
821
821
- base
822
+ strategy :
823
+ fail-fast : false
824
+ matrix :
825
+ python-version : ${{ fromJson(needs.info.outputs.python_versions) }}
822
826
name : Split tests for full run
823
827
steps :
824
828
- name : Install additional OS dependencies
@@ -832,11 +836,11 @@ jobs:
832
836
libgammu-dev
833
837
- name : Check out code from GitHub
834
838
835
- - name : Set up Python ${{ env.DEFAULT_PYTHON }}
839
+ - name : Set up Python ${{ matrix.python-version }}
836
840
id : python
837
841
838
842
with :
839
- python-version : ${{ env.DEFAULT_PYTHON }}
843
+ python-version : ${{ matrix.python-version }}
840
844
check-latest : true
841
845
- name : Restore base Python virtual environment
842
846
id : cache-venv
@@ -854,7 +858,7 @@ jobs:
854
858
- name : Upload pytest_buckets
855
859
856
860
with :
857
- name : pytest_buckets
861
+ name : pytest_buckets-${{ matrix.python-version }}
858
862
path : pytest_buckets.txt
859
863
overwrite : true
860
864
@@ -919,7 +923,7 @@ jobs:
919
923
- name : Download pytest_buckets
920
924
921
925
with :
922
- name : pytest_buckets
926
+ name : pytest_buckets-${{ matrix.python-version }}
923
927
- name : Compile English translations
924
928
run : |
925
929
. venv/bin/activate
You can’t perform that action at this time.
0 commit comments