We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8d7811 commit 4faf014Copy full SHA for 4faf014
.github/workflows/check-go-task.yml
@@ -119,8 +119,16 @@ jobs:
119
run: git diff --color --exit-code
120
121
check-config:
122
+ name: check-config (${{ matrix.module.path }})
123
runs-on: ubuntu-latest
124
125
+ strategy:
126
+ fail-fast: false
127
+
128
+ matrix:
129
+ module:
130
+ - path: ./
131
132
steps:
133
- name: Checkout repository
134
uses: actions/checkout@v2
@@ -131,6 +139,7 @@ jobs:
139
go-version: ${{ env.GO_VERSION }}
140
141
- name: Run go mod tidy
142
+ working-directory: ${{ matrix.module.path }}
143
run: go mod tidy
135
144
136
145
- name: Check whether any tidying was needed
0 commit comments