|
16 | 16 | GO_VERSION: 1.23.2
|
17 | 17 |
|
18 | 18 | jobs:
|
19 |
| - lint: |
20 |
| - runs-on: ubuntu-latest |
21 |
| - steps: |
22 |
| - - uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 |
23 |
| - with: |
24 |
| - go-version: ${{ env.GO_VERSION }} |
25 |
| - cache: false |
26 |
| - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 |
27 |
| - with: |
28 |
| - persist-credentials: false |
29 |
| - - name: golangci-lint |
30 |
| - uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1 |
31 |
| - with: |
32 |
| - version: v1.61.0 |
33 |
| - args: --build-tags=e2e,conformance,gcp,oidc,none --out-format=colored-line-number |
34 |
| - codespell: |
35 |
| - name: Codespell |
36 |
| - runs-on: ubuntu-latest |
37 |
| - timeout-minutes: 5 |
38 |
| - steps: |
39 |
| - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 |
40 |
| - with: |
41 |
| - persist-credentials: false |
42 |
| - - name: Codespell |
43 |
| - uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2.1 |
44 |
| - with: |
45 |
| - skip: .git,*.png,*.woff,*.woff2,*.eot,*.ttf,*.jpg,*.ico,*.svg,./site/themes/contour/static/fonts/README.md,./vendor,./site/public,./hack/actions/check-changefile-exists.go,go.mod,go.sum |
46 |
| - ignore_words_file: './.codespell.ignorewords' |
47 |
| - check_filenames: true |
48 |
| - check_hidden: true |
| 19 | +# lint: |
| 20 | +# runs-on: ubuntu-latest |
| 21 | +# steps: |
| 22 | +# - uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 |
| 23 | +# with: |
| 24 | +# go-version: ${{ env.GO_VERSION }} |
| 25 | +# cache: false |
| 26 | +# - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 |
| 27 | +# with: |
| 28 | +# persist-credentials: false |
| 29 | +# - name: golangci-lint |
| 30 | +# uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1 |
| 31 | +# with: |
| 32 | +# version: v1.61.0 |
| 33 | +# args: --build-tags=e2e,conformance,gcp,oidc,none --out-format=colored-line-number |
| 34 | +# codespell: |
| 35 | +# name: Codespell |
| 36 | +# runs-on: ubuntu-latest |
| 37 | +# timeout-minutes: 5 |
| 38 | +# steps: |
| 39 | +# - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 |
| 40 | +# with: |
| 41 | +# persist-credentials: false |
| 42 | +# - name: Codespell |
| 43 | +# uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2.1 |
| 44 | +# with: |
| 45 | +# skip: .git,*.png,*.woff,*.woff2,*.eot,*.ttf,*.jpg,*.ico,*.svg,./site/themes/contour/static/fonts/README.md,./vendor,./site/public,./hack/actions/check-changefile-exists.go,go.mod,go.sum |
| 46 | +# ignore_words_file: './.codespell.ignorewords' |
| 47 | +# check_filenames: true |
| 48 | +# check_hidden: true |
49 | 49 | codegen:
|
50 | 50 | runs-on: ubuntu-latest
|
51 | 51 | steps:
|
|
76 | 76 | ./hack/actions/check-uncommitted-codegen.sh
|
77 | 77 | build-image:
|
78 | 78 | needs:
|
79 |
| - - lint |
80 |
| - - codespell |
| 79 | +# - lint |
| 80 | +# - codespell |
81 | 81 | - codegen
|
82 | 82 | runs-on: ubuntu-latest
|
83 | 83 | steps:
|
@@ -219,8 +219,8 @@ jobs:
|
219 | 219 | make upgrade
|
220 | 220 | test-linux:
|
221 | 221 | needs:
|
222 |
| - - lint |
223 |
| - - codespell |
| 222 | +# - lint |
| 223 | +# - codespell |
224 | 224 | - codegen
|
225 | 225 | runs-on: ubuntu-latest
|
226 | 226 | steps:
|
@@ -260,8 +260,8 @@ jobs:
|
260 | 260 | files: coverage.out
|
261 | 261 | test-osx:
|
262 | 262 | needs:
|
263 |
| - - lint |
264 |
| - - codespell |
| 263 | +# - lint |
| 264 | +# - codespell |
265 | 265 | - codegen
|
266 | 266 | runs-on: macos-latest
|
267 | 267 | steps:
|
|
0 commit comments