From 37dffcbffc5a67738253bea01755e36fe8d9fab2 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 12 Jan 2025 05:16:58 +0000 Subject: [PATCH] Update from copier (2025-01-12T05:16:58) --- .copier-answers.yml | 2 +- .github/workflows/build.yml | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.copier-answers.yml b/.copier-answers.yml index de90aa4..7db12f7 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: ea9f24b +_commit: 81e8acd _src_path: https://github.com/python-project-templates/base.git add_extension: python email: 3105306+timkpaine@users.noreply.github.com diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3850f82..2c20369 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,18 +47,15 @@ jobs: - name: Lint run: make lint - if: matrix.os == 'ubuntu-latest' - name: Checks run: make checks - if: matrix.os == 'ubuntu-latest' - name: Build run: make build - name: Test run: make coverage - if: matrix.os == 'ubuntu-latest' - name: Upload test results (Python) uses: actions/upload-artifact@v4 @@ -70,9 +67,7 @@ jobs: - name: Publish Unit Test Results uses: EnricoMi/publish-unit-test-result-action@v2 with: - files: | - **/junit.xml - if: matrix.os == 'ubuntu-latest' + files: '**/junit.xml' - name: Upload coverage uses: codecov/codecov-action@v5 @@ -81,10 +76,8 @@ jobs: - name: Make dist run: make dist - if: matrix.os == 'ubuntu-latest' - uses: actions/upload-artifact@v4 with: name: dist-${{matrix.os}} path: dist - if: matrix.os == 'ubuntu-latest'