We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43976ca commit f77f75fCopy full SHA for f77f75f
1 file changed
.github/workflows/coverage.yml
@@ -24,6 +24,10 @@ on:
24
coverage-data-pattern:
25
required: true
26
type: string
27
+ python-version:
28
+ required: false
29
+ type: string
30
+ default: "3.10"
31
32
jobs:
33
pull-request-coverage:
@@ -37,7 +41,7 @@ jobs:
37
41
- uses: actions/setup-python@v5
38
42
with:
39
43
# Use latest Python, so it understands all syntax.
40
- python-version: "3.7"
44
+ python-version: ${{ inputs.python-version }}
45
46
- uses: actions/download-artifact@v4
47
@@ -120,7 +124,7 @@ jobs:
120
124
121
125
# Use the earliest possible version of Python due to a bug in coveragepy.
122
126
# See https://github.com/nedbat/coveragepy/issues/1572
123
127
128
129
130
0 commit comments