Skip to content

Commit b04c64d

Browse files
committedFeb 24, 2025·
chore: Template upgrade
1 parent 2009f85 commit b04c64d

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed
 

‎.copier-answers.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier.
2-
_commit: 1.6.1
2+
_commit: 1.6.3
33
_src_path: gh:pawamoy/copier-uv
44
author_email: dev@pawamoy.fr
55
author_fullname: Timothée Mazzucotelli

‎.github/workflows/ci.yml

+14
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,16 @@ jobs:
5555
- name: Check for breaking changes in the API
5656
run: make check-api
5757

58+
- name: Store objects inventory for tests
59+
uses: actions/upload-artifact@v4
60+
with:
61+
name: objects.inv
62+
path: site/objects.inv
63+
5864
tests:
5965

66+
needs:
67+
- quality
6068
strategy:
6169
matrix:
6270
os:
@@ -106,5 +114,11 @@ jobs:
106114
UV_RESOLUTION: ${{ matrix.resolution }}
107115
run: make setup
108116

117+
- name: Download objects inventory
118+
uses: actions/download-artifact@v4
119+
with:
120+
name: objects.inv
121+
path: site/
122+
109123
- name: Run the test suite
110124
run: make test

0 commit comments

Comments
 (0)
Please sign in to comment.