2727 strategy :
2828 fail-fast : false
2929 matrix :
30- python-version : ["3.6","3.8","3.12","3.13"]
30+ python-version : ["3.6","3.7","3. 8","3.12","3.13"]
3131 # python3.6 reached EOL and is no longer being supported on
3232 # new versions of hosted runners on Github Actions
3333 # ubuntu-20.04 is the last version that supported python3.6
7373 run : |
7474 set -x # print commands that are executed
7575 ./scripts/runtox.sh "py${{ matrix.python-version }}-trytond-latest"
76+ - name : Test typer latest
77+ run : |
78+ set -x # print commands that are executed
79+ ./scripts/runtox.sh "py${{ matrix.python-version }}-typer-latest"
7680 - name : Generate coverage XML (Python 3.6)
7781 if : ${{ !cancelled() && matrix.python-version == '3.6' }}
7882 run : |
8690 coverage xml
8791 - name : Upload coverage to Codecov
8892 if : ${{ !cancelled() }}
89- 93+ 9094 with :
9195 token : ${{ secrets.CODECOV_TOKEN }}
9296 files : coverage.xml
@@ -153,6 +157,10 @@ jobs:
153157 run : |
154158 set -x # print commands that are executed
155159 ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-trytond"
160+ - name : Test typer pinned
161+ run : |
162+ set -x # print commands that are executed
163+ ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-typer"
156164 - name : Generate coverage XML (Python 3.6)
157165 if : ${{ !cancelled() && matrix.python-version == '3.6' }}
158166 run : |
@@ -166,7 +174,7 @@ jobs:
166174 coverage xml
167175 - name : Upload coverage to Codecov
168176 if : ${{ !cancelled() }}
169- 177+ 170178 with :
171179 token : ${{ secrets.CODECOV_TOKEN }}
172180 files : coverage.xml
0 commit comments