3030 fail-fast : false
3131 matrix :
3232 python-version : ["3.8","3.12","3.13"]
33- # python3.6 reached EOL and is no longer being supported on
34- # new versions of hosted runners on Github Actions
35- # ubuntu-20.04 is the last version that supported python3.6
36- # see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
37- os : [ubuntu-20.04]
33+ os : [ubuntu-22.04]
3834 steps :
39354036 - uses : actions/setup-python@v5
5955 run : |
6056 set -x # print commands that are executed
6157 ./scripts/runtox.sh "py${{ matrix.python-version }}-unleash-latest"
62- - name : Generate coverage XML (Python 3.6)
63- if : ${{ !cancelled() && matrix.python-version == '3.6' }}
64- run : |
65- export COVERAGE_RCFILE=.coveragerc36
66- coverage combine .coverage-sentry-*
67- coverage xml --ignore-errors
6858 - name : Generate coverage XML
69- if : ${{ !cancelled() && matrix.python-version != '3.6' }}
59+ if : ${{ !cancelled() }}
7060 run : |
7161 coverage combine .coverage-sentry-*
7262 coverage xml
9484 fail-fast : false
9585 matrix :
9686 python-version : ["3.8","3.12","3.13"]
97- # python3.6 reached EOL and is no longer being supported on
98- # new versions of hosted runners on Github Actions
99- # ubuntu-20.04 is the last version that supported python3.6
100- # see https://github.com/actions/setup-python/issues/544#issuecomment-1332535877
101- os : [ubuntu-20.04]
87+ os : [ubuntu-22.04]
10288 steps :
1038910490 - uses : actions/setup-python@v5
@@ -123,14 +109,8 @@ jobs:
123109 run : |
124110 set -x # print commands that are executed
125111 ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-unleash"
126- - name : Generate coverage XML (Python 3.6)
127- if : ${{ !cancelled() && matrix.python-version == '3.6' }}
128- run : |
129- export COVERAGE_RCFILE=.coveragerc36
130- coverage combine .coverage-sentry-*
131- coverage xml --ignore-errors
132112 - name : Generate coverage XML
133- if : ${{ !cancelled() && matrix.python-version != '3.6' }}
113+ if : ${{ !cancelled() }}
134114 run : |
135115 coverage combine .coverage-sentry-*
136116 coverage xml
0 commit comments