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