Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copier-answers.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier
_commit: 55f9353
_commit: b74d698
_src_path: https://github.com/python-project-templates/base.git
add_docs: false
add_extension: python
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
version: ${{ matrix.python-version }}

- name: Install dependencies
<<<<<<< before updating
run: pip install cibuildwheel

- name: Python Wheel Steps (linux)
Expand All @@ -82,6 +83,24 @@ jobs:

- name: Upload Wheel
uses: actions/upload-artifact@v5
=======
run: make develop

- name: Lint
run: make lint

- name: Checks
run: make checks

- name: Build
run: make build

- name: Test
run: make coverage

- name: Upload test results (Python)
uses: actions/upload-artifact@v6
>>>>>>> after updating
with:
name: dist-${{ runner.os }}-${{ runner.arch }}-${{ matrix.python-version }}
path: dist/*.whl
Expand All @@ -97,5 +116,12 @@ jobs:
- name: Install test dependencies
run: python -m pip install pytest rich typer

<<<<<<< before updating
- name: Test Wheel
run: python -m pytest -vvv verilator/tests
=======
- uses: actions/upload-artifact@v6
with:
name: dist-${{matrix.os}}
path: dist
>>>>>>> after updating