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 7b0d077 commit 2db2f1bCopy full SHA for 2db2f1b
.github/actions/tests/python/action.yml
@@ -52,6 +52,10 @@ inputs:
52
required: false
53
type: string
54
default: "utf8mb4"
55
+ codecov-token:
56
+ description: "Codecov token for uploading coverage reports"
57
+ required: true
58
+ type: string
59
60
runs:
61
using: "composite"
@@ -137,3 +141,4 @@ runs:
137
141
with:
138
142
files: ./coverage.xml
139
143
fail_ci_if_error: true
144
+ token: ${{ inputs.codecov-token }}
.github/workflows/testsPython.yml
@@ -36,3 +36,4 @@ jobs:
36
mysql-password: "${{ secrets.MYSQL_PASSWORD }}"
37
mysql-database: "${{ secrets.MYSQL_DATABASE }}"
38
mysql-charset: "${{ secrets.MYSQL_CHARSET }}"
39
+ codecov-token: "${{ secrets.CODECOV_TOKEN }}"
0 commit comments