@@ -92,22 +92,22 @@ jobs:
9292# key: go-lint-build-${{ matrix.group }}-${{ runner.os }}-${{ hashFiles('**/go.sum') }}
9393# - name: Lint
9494# run: make -j2 golint GROUP=${{ matrix.group }}
95- lint :
96- if : ${{ github.actor != 'dependabot[bot]' && always() }}
97- runs-on : ubuntu-latest
98- needs : [setup-environment, lint-matrix]
99- steps :
100- - name : Print result
101- run : echo ${{ needs.lint-matrix.result }}
102- - name : Interpret result
103- run : |
104- if [[ success == ${{ needs.lint-matrix.result }} ]]
105- then
106- echo "All matrix jobs passed!"
107- else
108- echo "One or more matrix jobs failed."
109- false
110- fi
95+ # lint:
96+ # if: ${{ github.actor != 'dependabot[bot]' && always() }}
97+ # runs-on: ubuntu-latest
98+ # needs: [setup-environment, lint-matrix]
99+ # steps:
100+ # - name: Print result
101+ # run: echo ${{ needs.lint-matrix.result }}
102+ # - name: Interpret result
103+ # run: |
104+ # if [[ success == ${{ needs.lint-matrix.result }} ]]
105+ # then
106+ # echo "All matrix jobs passed!"
107+ # else
108+ # echo "One or more matrix jobs failed."
109+ # false
110+ # fi
111111 checks :
112112 runs-on : ubuntu-latest
113113 needs : [setup-environment]
@@ -216,25 +216,25 @@ jobs:
216216# key: go-test-build-${{ runner.os }}-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
217217# - name: Run Unit Tests
218218# run: make gotest GROUP=${{ matrix.group }}
219- unittest :
220- if : ${{ github.actor != 'dependabot[bot]' && always() }}
221- strategy :
222- matrix :
223- go-version : ["1.20", 1.19] # 1.20 is interpreted as 1.2 without quotes
224- runs-on : ubuntu-latest
225- needs : [setup-environment, unittest-matrix]
226- steps :
227- - name : Print result
228- run : echo ${{ needs.unittest-matrix.result }}
229- - name : Interpret result
230- run : |
231- if [[ success == ${{ needs.unittest-matrix.result }} ]]
232- then
233- echo "All matrix jobs passed!"
234- else
235- echo "One or more matrix jobs failed."
236- false
237- fi
219+ # unittest:
220+ # if: ${{ github.actor != 'dependabot[bot]' && always() }}
221+ # strategy:
222+ # matrix:
223+ # go-version: ["1.20", 1.19] # 1.20 is interpreted as 1.2 without quotes
224+ # runs-on: ubuntu-latest
225+ # needs: [setup-environment, unittest-matrix]
226+ # steps:
227+ # - name: Print result
228+ # run: echo ${{ needs.unittest-matrix.result }}
229+ # - name: Interpret result
230+ # run: |
231+ # if [[ success == ${{ needs.unittest-matrix.result }} ]]
232+ # then
233+ # echo "All matrix jobs passed!"
234+ # else
235+ # echo "One or more matrix jobs failed."
236+ # false
237+ # fi
238238
239239 integration-tests :
240240 runs-on : ubuntu-latest
0 commit comments