Skip to content

Commit bcfc0ea

Browse files
committed
test-doc-builder: Set git user name and email.
1 parent 493dc33 commit bcfc0ea

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test-doc-builder.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
if: success() || failure()
3939
run: |
4040
cd test
41+
git config user.name "CTSM Developer"
42+
git config user.email "[email protected]"
4143
make test
4244
4345
test-python-latest:
@@ -61,9 +63,10 @@ jobs:
6163
python-version: ${{ matrix.python-version }}
6264

6365
- name: Unit/system tests
64-
if: success() || failure()
6566
run: |
6667
cd test
68+
git config --global user.name "CTSM Developer"
69+
git config --global user.email "[email protected]"
6770
make test
6871
6972
lint-and-test-conda:
@@ -98,6 +101,8 @@ jobs:
98101
if: success() || failure()
99102
run: |
100103
cd test
104+
git config user.name "CTSM Developer"
105+
git config user.email "[email protected]"
101106
conda run -n doc-builder-testing make test
102107
103108
# File an issue if any of above jobs failed during a scheduled or manual run

0 commit comments

Comments
 (0)