From 3dd0f6da3931ef8d0e237c6d035081f9e4aac306 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Dec 2025 05:13:27 +0000 Subject: [PATCH] Update from copier (2025-12-14T05:13:27) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- .github/workflows/build.yaml | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index feca7b9..34f543b 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -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 diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 914dc25..c849a5d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -56,6 +56,7 @@ jobs: version: ${{ matrix.python-version }} - name: Install dependencies +<<<<<<< before updating run: pip install cibuildwheel - name: Python Wheel Steps (linux) @@ -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 @@ -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