File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -35,24 +35,27 @@ jobs:
3535 github_token : ${{ secrets.GITHUB_TOKEN }}
3636 build-translation :
3737 runs-on : ubuntu-latest
38+ strategy :
39+ matrix :
40+ version : [3.8, 3.9]
3841 needs : ['update-translation']
3942 steps :
4043 - uses : actions/setup-python@master
4144 - uses : actions/checkout@master
4245 with :
4346 repository : python/cpython
44- ref : 3.9
47+ ref : ${{ matrix.version }}
4548 - run : make venv
4649 working-directory : ./Doc
4750 - uses : actions/checkout@master
4851 with :
49- ref : 3.9
52+ ref : ${{ matrix.version }}
5053 path : Doc/locales/pl/LC_MESSAGES
5154 - run : git pull
5255 working-directory : ./Doc/locales/pl/LC_MESSAGES
5356 - run : make -e SPHINXOPTS="-D language='pl' -D gettext_compact=0 -W --keep-going" html
5457 working-directory : ./Doc
5558 - uses : actions/upload-artifact@master
5659 with :
57- name : build
60+ name : build-${{ matrix.version }}
5861 path : Doc/build/html
You can’t perform that action at this time.
0 commit comments