Skip to content

Commit

Permalink
Merge pull request #16 from python-project-templates/copier-update-20…
Browse files Browse the repository at this point in the history
…24-10-08T21-19-15

Update from copier (2024-10-08T21-19-15)
  • Loading branch information
timkpaine authored Oct 8, 2024
2 parents 6cac509 + e0ac624 commit 8b327ec
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
18 changes: 11 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: Build Status

on:
Expand Down Expand Up @@ -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() }}

Expand All @@ -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
Expand All @@ -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'
1 change: 0 additions & 1 deletion .github/workflows/copier.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: Copier Updates

on:
Expand Down

0 comments on commit 8b327ec

Please sign in to comment.