We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0067909 commit 83a3d89Copy full SHA for 83a3d89
.github/workflows/test.yml
@@ -168,6 +168,18 @@ jobs:
168
169
steps:
170
171
+ - name: Checkout
172
+ uses: actions/checkout@v5
173
+ with:
174
+ # Need to fetch more than the last commit so that setuptools-scm can
175
+ # create the correct version string. If the number of commits since
176
+ # the last release is greater than this, the version still be wrong.
177
+ # Increase if necessary.
178
+ fetch-depth: 100
179
+ # The GitHub token is preserved by default but this job doesn't need
180
+ # to be able to push to GitHub.
181
+ persist-credentials: false
182
+
183
- name: Download coverage report artifacts
184
# Download coverage reports from every runner.
185
# Maximum coverage is achieved by combining reports from every runner.
0 commit comments