File tree 4 files changed +7
-20
lines changed
jupyter/.github/workflows
4 files changed +7
-20
lines changed Original file line number Diff line number Diff line change @@ -76,15 +76,13 @@ jobs:
76
76
uses: actions/upload-artifact@v4
77
77
with:
78
78
name: {% raw %} test-results-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.node-version }}{% endraw %}
79
- path: |
80
- **/junit.xml
79
+ path: '**/junit.xml'
81
80
if: {% raw %} ${{ always() }}{% endraw %}
82
81
83
82
- name: Publish Unit Test Results
84
83
uses: EnricoMi/publish-unit-test-result-action@v2
85
84
with:
86
- files: |
87
- **/junit.xml
85
+ files: '**/junit.xml'
88
86
if: matrix.os == 'ubuntu-latest'
89
87
90
88
- name: Upload coverage
Original file line number Diff line number Diff line change @@ -76,15 +76,13 @@ jobs:
76
76
uses: actions/upload-artifact@v4
77
77
with:
78
78
name: {% raw %} test-results-${{ matrix.os }}-${{ matrix.python-version }}-${{ matrix.node-version }}{% endraw %}
79
- path: |
80
- **/junit.xml
79
+ path: '**/junit.xml'
81
80
if: {% raw %} ${{ always() }}{% endraw %}
82
81
83
82
- name: Publish Unit Test Results
84
83
uses: EnricoMi/publish-unit-test-result-action@v2
85
84
with:
86
- files: |
87
- **/junit.xml
85
+ files: '**/junit.xml'
88
86
if: matrix.os == 'ubuntu-latest'
89
87
90
88
- name: Upload coverage
Original file line number Diff line number Diff line change @@ -47,18 +47,15 @@ jobs:
47
47
48
48
- name: Lint
49
49
run: make lint
50
- if: matrix.os == 'ubuntu-latest'
51
50
52
51
- name: Checks
53
52
run: make checks
54
- if: matrix.os == 'ubuntu-latest'
55
53
56
54
- name: Build
57
55
run: make build
58
56
59
57
- name: Test
60
58
run: make coverage
61
- if: matrix.os == 'ubuntu-latest'
62
59
63
60
- name: Upload test results (Python)
64
61
uses: actions/upload-artifact@v4
70
67
- name: Publish Unit Test Results
71
68
uses: EnricoMi/publish-unit-test-result-action@v2
72
69
with:
73
- files: |
74
- **/junit.xml
75
- if: matrix.os == 'ubuntu-latest'
70
+ files: '**/junit.xml'
76
71
77
72
- name: Upload coverage
78
73
uses: codecov/codecov-action@v5
81
76
82
77
- name: Make dist
83
78
run: make dist
84
- if: matrix.os == 'ubuntu-latest'
85
79
86
80
- uses: actions/upload-artifact@v4
87
81
with:
88
82
name: {% raw %} dist-${{matrix.os}}{% endraw %}
89
83
path: dist
90
- if: matrix.os == 'ubuntu-latest'
Original file line number Diff line number Diff line change @@ -89,15 +89,13 @@ jobs:
89
89
uses: actions/upload-artifact@v4
90
90
with:
91
91
name: {% raw %} test-results-${{ matrix.os }}-${{ matrix.python-version }}{% endraw %}
92
- path: |
93
- **/junit.xml
92
+ path: '**/junit.xml'
94
93
if: {% raw %} ${{ always() }}{% endraw %}
95
94
96
95
- name: Publish Unit Test Results
97
96
uses: EnricoMi/publish-unit-test-result-action@v2
98
97
with:
99
- files: |
100
- **/junit.xml
98
+ files: '**/junit.xml'
101
99
if: matrix.os == 'ubuntu-latest'
102
100
103
101
- name: Upload coverage
You can’t perform that action at this time.
0 commit comments