diff --git a/.copier-answers.yml b/.copier-answers.yml index 8c293b6..7628528 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: d84ab3c +_commit: 33cc159 _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 126d257..bbf2a4f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,3 @@ - name: Build Status on: @@ -48,23 +47,23 @@ jobs: - name: Lint run: make lint - if: ${{ matrix.os == 'ubuntu-latest' }} + if: matrix.os == 'ubuntu-latest' - name: Checks run: make checks - if: ${{ matrix.os == 'ubuntu-latest' }} + if: matrix.os == 'ubuntu-latest' - name: Build run: make build - name: Test run: make coverage - if: ${{ matrix.os == 'ubuntu-latest' }} + if: matrix.os == 'ubuntu-latest' - name: Upload test results (Python) uses: actions/upload-artifact@v4 with: - name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }} + name: test-results-${{ matrix.os }}-${{ matrix.python-version }} path: junit.xml if: ${{ always() }} @@ -73,7 +72,7 @@ jobs: with: files: | **/junit.xml - if: ${{ matrix.os == 'ubuntu-latest' }} + if: matrix.os == 'ubuntu-latest' - name: Upload coverage uses: codecov/codecov-action@v4 @@ -82,5 +81,10 @@ jobs: - name: Make dist run: make dist - if: ${{ matrix.os == 'ubuntu-latest' }} + if: matrix.os == 'ubuntu-latest' + - uses: actions/upload-artifact@v4 + with: + name: dist-${{matrix.os}} + path: dist + if: matrix.os == 'ubuntu-latest' diff --git a/.github/workflows/copier.yml b/.github/workflows/copier.yml index 2825075..871b414 100644 --- a/.github/workflows/copier.yml +++ b/.github/workflows/copier.yml @@ -1,4 +1,3 @@ - name: Copier Updates on: