From 35d9071ac4e8e278f927fa2a02b2360d187b331e Mon Sep 17 00:00:00 2001 From: Samuel Enderwitz <18609909+smuu@users.noreply.github.com> Date: Wed, 24 May 2023 17:35:05 +0200 Subject: [PATCH] feat: disable tidy check (#958) ## Overview ## Checklist - [ ] 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 <18609909+Smuu@users.noreply.github.com> --- .github/workflows/test.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 385bacd5bd8..bd7d8c1cc94 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,17 +10,17 @@ on: required: true jobs: - go_mod_tidy_check: - name: Go Mod Tidy Check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v4 - with: - go-version: ${{ inputs.GO_VERSION }} - - run: go mod tidy - - name: check for diff - run: git diff --exit-code + # go_mod_tidy_check: + # name: Go Mod Tidy Check + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v3 + # - uses: actions/setup-go@v4 + # with: + # go-version: ${{ inputs.GO_VERSION }} + # - run: go mod tidy + # - name: check for diff + # run: git diff --exit-code test_coverage: name: Unit Tests Coverage