Skip to content

Commit 3a4ed81

Browse files
Update from copier (2024-10-08T21-19-15)
1 parent 6cac509 commit 3a4ed81

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: d84ab3c
2+
_commit: 33cc159
33
_src_path: https://github.com/python-project-templates/base.git
44
add_extension: python
55

.github/workflows/build.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
name: Build Status
32

43
on:
@@ -48,23 +47,23 @@ jobs:
4847

4948
- name: Lint
5049
run: make lint
51-
if: ${{ matrix.os == 'ubuntu-latest' }}
50+
if: matrix.os == 'ubuntu-latest'
5251

5352
- name: Checks
5453
run: make checks
55-
if: ${{ matrix.os == 'ubuntu-latest' }}
54+
if: matrix.os == 'ubuntu-latest'
5655

5756
- name: Build
5857
run: make build
5958

6059
- name: Test
6160
run: make coverage
62-
if: ${{ matrix.os == 'ubuntu-latest' }}
61+
if: matrix.os == 'ubuntu-latest'
6362

6463
- name: Upload test results (Python)
6564
uses: actions/upload-artifact@v4
6665
with:
67-
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
66+
name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
6867
path: junit.xml
6968
if: ${{ always() }}
7069

@@ -73,7 +72,7 @@ jobs:
7372
with:
7473
files: |
7574
**/junit.xml
76-
if: ${{ matrix.os == 'ubuntu-latest' }}
75+
if: matrix.os == 'ubuntu-latest'
7776

7877
- name: Upload coverage
7978
uses: codecov/codecov-action@v4
@@ -82,5 +81,10 @@ jobs:
8281

8382
- name: Make dist
8483
run: make dist
85-
if: ${{ matrix.os == 'ubuntu-latest' }}
84+
if: matrix.os == 'ubuntu-latest'
8685

86+
- uses: actions/upload-artifact@v4
87+
with:
88+
name: dist-${{matrix.os}}
89+
path: dist
90+
if: matrix.os == 'ubuntu-latest'

.github/workflows/copier.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
<<<<<<< before updating
12

3+
=======
4+
>>>>>>> after updating
25
name: Copier Updates
36

47
on:

0 commit comments

Comments
 (0)