We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9219b59 commit 26e48e9Copy full SHA for 26e48e9
.github/workflows/test_template.yml
@@ -28,7 +28,14 @@ jobs:
28
- name: Install dependencies
29
run: uv sync --locked --no-install-project
30
31
- - name: Test
+ - name: Set authorship for git
32
+ if: matrix.vcs == 'git'
33
+ run: |
34
+ git config --global init.defaultBranch main
35
+ git config --global user.name "GitHub Actions"
36
+ git config --global user.email "actions@github.com"
37
+
38
+ - name: Test template instantiation
39
run: uv run make test
40
env:
41
VCS: ${{ matrix.vcs }}
0 commit comments