We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fb446b commit 26a64dcCopy full SHA for 26a64dc
.github/workflows/ci-pr.yaml
@@ -32,14 +32,6 @@ jobs:
32
with:
33
name: coverage-${{ matrix.python }}
34
path: coverage-${{ matrix.python }}.xml
35
- - name: Save PR number
36
- run: |
37
- mkdir -p ./pr
38
- echo ${{ github.event.number }} > ./pr/NR
39
- - uses: actions/upload-artifact@v2
40
- with:
41
- name: pr
42
- path: pr/
43
integration:
44
runs-on: ${{ matrix.os }}
45
strategy:
@@ -76,6 +68,13 @@ jobs:
76
68
pip3 install -e .
77
69
pip install --upgrade pip
78
70
pip install --upgrade setuptools
71
+ mkdir -p ./pr
72
+ echo ${{ github.event.number }} > ./pr/NR
73
+ - uses: actions/upload-artifact@v4
74
+ with:
75
+ name: pr
+ path: pr/
+ overwrite: true
79
- uses: pypa/[email protected]
80
81
ignore-vulns: |
0 commit comments