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 084e39d commit 6ed9889Copy full SHA for 6ed9889
.github/workflows/ci.yml
@@ -107,11 +107,13 @@ jobs:
107
echo ${{ github.event.number }} > ./pr/NR
108
- uses: actions/upload-artifact@v4
109
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
110
+ # Currently: v4 has a bug https://github.com/actions/upload-artifact/issues/506
111
+ # that fails on multiple parallel writes to the same filename.
112
+ continue-on-error: true
113
with:
114
overwrite: true
115
name: pr
116
path: pr/NR
- if-no-files-found: error
117
118
- name: Test CPython typing test suite
119
# Test suite fails on PyPy even without typing_extensions
0 commit comments