Skip to content

Commit 6ed9889

Browse files
committed
continue on error as v4 has a bug
1 parent 084e39d commit 6ed9889

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,13 @@ jobs:
107107
echo ${{ github.event.number }} > ./pr/NR
108108
- uses: actions/upload-artifact@v4
109109
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
110113
with:
111114
overwrite: true
112115
name: pr
113116
path: pr/NR
114-
if-no-files-found: error
115117

116118
- name: Test CPython typing test suite
117119
# Test suite fails on PyPy even without typing_extensions

0 commit comments

Comments
 (0)