File tree Expand file tree Collapse file tree 2 files changed +2
-36
lines changed Expand file tree Collapse file tree 2 files changed +2
-36
lines changed Original file line number Diff line number Diff line change 92
92
if : ${{ matrix.os == 'ubuntu-latest' }}
93
93
94
94
- name : Upload coverage
95
- uses : codecov/codecov-action@v4
96
-
97
- - name : Upload generated reports
98
- uses : actions/upload-artifact@v4
99
- id : upload-reports
100
- with :
101
- name : reports
102
- path : ' examples/output/*.html'
103
- if-no-files-found : error
104
- overwrite : true
105
- if : matrix.os == 'ubuntu-latest' && matrix.python-version == 3.11 && github.event_name == 'pull_request'
106
-
107
- - name : Find comment for generated reports
108
- uses : peter-evans/find-comment@v3
109
- id : find-comment
110
- with :
111
- issue-number : ${{ github.event.pull_request.number }}
112
- comment-author : ' github-actions[bot]'
113
- if : matrix.os == 'ubuntu-latest' && matrix.python-version == 3.11 && github.event_name == 'pull_request'
114
-
115
- - name : Update comment for generated reports
116
- uses : peter-evans/create-or-update-comment@v4
117
- with :
118
- issue-number : ${{ github.event.pull_request.number }}
119
- comment-id : ${{ steps.find-comment.outputs.comment-id }}
120
- edit-mode : replace
121
- body : |-
122
- | Name | Link |
123
- | -------- | ----------------------- |
124
- | Test Reports | [download](${{ steps.upload-reports.outputs.artifact-url }}) |
125
- if : matrix.os == 'ubuntu-latest' && matrix.python-version == 3.11 && github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == 'nbprint/nbprint'
95
+ uses : codecov/codecov-action@v5
126
96
127
97
- name : Twine check
128
98
run : make dist
Original file line number Diff line number Diff line change @@ -37,19 +37,15 @@ dependencies = [
37
37
38
38
[project .optional-dependencies ]
39
39
develop = [
40
+ " build" ,
40
41
" bump-my-version" ,
41
- " isort>=5,<6" ,
42
42
" ruff>=0.3,<0.5" ,
43
43
" twine" ,
44
44
" wheel" ,
45
45
# test
46
46
" pytest" ,
47
47
" pytest-cov" ,
48
48
]
49
- test = [
50
- " pytest" ,
51
- " pytest-cov" ,
52
- ]
53
49
54
50
[project .entry-points .hatch ]
55
51
cpp = " hatch_cpp.hooks"
You can’t perform that action at this time.
0 commit comments