File tree Expand file tree Collapse file tree 4 files changed +52
-2
lines changed Expand file tree Collapse file tree 4 files changed +52
-2
lines changed Original file line number Diff line number Diff line change 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
44add_docs : false
55add_extension : python
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -141,6 +141,8 @@ js/coverage
141141js /dist
142142js /lib
143143js /node_modules
144+ js /test-results
145+ js /playwright-report
144146js /* .tgz
145147verilator /extension
146148
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ dist-check: ## run python dist checker with twine
125125
126126dist : 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 #
You can’t perform that action at this time.
0 commit comments