Skip to content

Commit 35d9071

Browse files
authored
feat: disable tidy check (#958)
<!-- Please read and fill out this form before submitting your PR. Please make sure you have reviewed our contributors guide before submitting your first PR. --> ## Overview <!-- Please provide an explanation of the PR, including the appropriate context, background, goal, and rationale. If there is an issue with this information, please provide a tl;dr and link the issue. --> ## Checklist <!-- Please complete the checklist to ensure that the PR is ready to be reviewed. IMPORTANT: PRs should be left in Draft until the below checklist is completed. --> - [ ] New and updated code has appropriate documentation - [ ] New and updated code has new and/or updated testing - [ ] Required CI checks are passing - [ ] Visual proof for any user facing features like CLI or documentation updates - [ ] Linked issues closed with keywords Signed-off-by: Smuu <[email protected]>
1 parent eb66b72 commit 35d9071

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ on:
1010
required: true
1111

1212
jobs:
13-
go_mod_tidy_check:
14-
name: Go Mod Tidy Check
15-
runs-on: ubuntu-latest
16-
steps:
17-
- uses: actions/checkout@v3
18-
- uses: actions/setup-go@v4
19-
with:
20-
go-version: ${{ inputs.GO_VERSION }}
21-
- run: go mod tidy
22-
- name: check for diff
23-
run: git diff --exit-code
13+
# go_mod_tidy_check:
14+
# name: Go Mod Tidy Check
15+
# runs-on: ubuntu-latest
16+
# steps:
17+
# - uses: actions/checkout@v3
18+
# - uses: actions/setup-go@v4
19+
# with:
20+
# go-version: ${{ inputs.GO_VERSION }}
21+
# - run: go mod tidy
22+
# - name: check for diff
23+
# run: git diff --exit-code
2424

2525
test_coverage:
2626
name: Unit Tests Coverage

0 commit comments

Comments
 (0)