We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63e7030 commit 0d0b09cCopy full SHA for 0d0b09c
1 file changed
.github/workflows/test-install.yml
@@ -7,7 +7,22 @@ on:
7
8
env:
9
BIN_PATH: ${{ github.workspace }}/bin
10
- INIT_ARGS: --depth 1 --apply --exclude=encrypted --exclude=externals --exclude=scripts --promptDefaults
+ INIT_ARGS: >
11
+ --destination ${{ github.workspace }}/chezmoi
12
+ --apply
13
+ --depth 1
14
+ --exclude=encrypted
15
+ --exclude=externals
16
+ --exclude=scripts
17
+ --promptDefaults
18
+ --no-tty
19
+ --color=false
20
+ --verbose
21
+ DOCTOR_ARGS: >
22
+ --keep-going
23
24
25
26
27
jobs:
28
test:
@@ -27,3 +42,6 @@ jobs:
42
- name: Init chezmoi
43
shell: bash
29
44
run: ${{ env.BIN_PATH }}/chezmoi init ${{ github.repository_owner }} ${{ env.INIT_ARGS }}
45
+ - name: Chezmoi doctor
46
+ shell: bash
47
+ run: ${{ env.BIN_PATH }}/chezmoi doctor ${{ env.DOCTOR_ARGS }}
0 commit comments