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 2757de5 commit 084e39dCopy full SHA for 084e39d
.github/workflows/ci.yml
@@ -101,17 +101,17 @@ jobs:
101
compression-level: 0 # no compression
102
103
- name: Save PR number for coverage report
104
- if: ${{ !startsWith(matrix.python-version, 'pypy') }}
+ if: ${{ !startsWith(matrix.python-version, 'pypy') }}
105
run: |
106
mkdir -p ./pr
107
echo ${{ github.event.number }} > ./pr/NR
108
- uses: actions/upload-artifact@v4
109
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
110
with:
111
+ overwrite: true
112
name: pr
- path: pr/
113
+ path: pr/NR
114
if-no-files-found: error
- overwrite: true
115
116
- name: Test CPython typing test suite
117
# Test suite fails on PyPy even without typing_extensions
0 commit comments