Skip to content

Commit 46a79b6

Browse files
Update from copier (2025-08-11T17:50:56)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4ed289b commit 46a79b6

File tree

4 files changed

+52
-2
lines changed

4 files changed

+52
-2
lines changed

.copier-answers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: f3ffa74
2+
_commit: fa27c8d
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: python

.github/workflows/build.yaml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
cibuildwheel:
3232
- "cp311"
3333
steps:
34+
<<<<<<< before updating
3435
- uses: actions/checkout@v4
3536
with:
3637
submodules: 'true'
@@ -99,3 +100,50 @@ jobs:
99100

100101
- name: Test Wheel
101102
run: python -m pytest -vvv verilator/tests
103+
=======
104+
- uses: actions/checkout@v5
105+
106+
- uses: actions-ext/python/setup@main
107+
with:
108+
version: ${{ matrix.python-version }}
109+
110+
- name: Install dependencies
111+
run: make develop
112+
113+
- name: Lint
114+
run: make lint
115+
116+
- name: Checks
117+
run: make checks
118+
119+
- name: Build
120+
run: make build
121+
122+
- name: Test
123+
run: make coverage
124+
125+
- name: Upload test results (Python)
126+
uses: actions/upload-artifact@v4
127+
with:
128+
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
129+
path: junit.xml
130+
if: ${{ always() }}
131+
132+
- name: Publish Unit Test Results
133+
uses: EnricoMi/publish-unit-test-result-action@v2
134+
with:
135+
files: '**/junit.xml'
136+
137+
- name: Upload coverage
138+
uses: codecov/codecov-action@v5
139+
with:
140+
token: ${{ secrets.CODECOV_TOKEN }}
141+
142+
- name: Make dist
143+
run: make dist
144+
145+
- uses: actions/upload-artifact@v4
146+
with:
147+
name: dist-${{matrix.os}}
148+
path: dist
149+
>>>>>>> after updating

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,8 @@ js/coverage
141141
js/dist
142142
js/lib
143143
js/node_modules
144+
js/test-results
145+
js/playwright-report
144146
js/*.tgz
145147
verilator/extension
146148

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ dist-check: ## run python dist checker with twine
125125

126126
dist: clean dist-build dist-check ## build all dists
127127

128-
publish: dist # publish python assets
128+
publish: dist ## publish python assets
129129

130130
#########
131131
# CLEAN #

0 commit comments

Comments
 (0)