File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ jobs:
1818 # https://github.com/actions/python-versions/blob/main/versions-manifest.json
1919 # https://devguide.python.org/versions/#supported-versions
2020 python-version :
21- - " 3.8"
2221 - " 3.9"
2322 - " 3.10"
2423 - " 3.11"
2524 - " 3.12"
25+ - " 3.13"
2626
2727 steps :
2828 - uses : actions/checkout@v4
@@ -70,10 +70,12 @@ jobs:
7070 # https://coveralls-python.readthedocs.io/en/latest/usage/index.html
7171 # upload coverage report for just one of Python version matrix runs
7272 - name : Upload coverage report to Coveralls
73- if : matrix.python-version == '3.9 '
73+ if : matrix.python-version == '3.12 '
7474 env :
7575 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
76- run : poetry run coveralls --service=github || true
76+ run : |
77+ pip install coveralls
78+ poetry run coveralls --service=github
7779
7880 - name : Lint with pylint
7981 run : make lint
You can’t perform that action at this time.
0 commit comments