From cd9951e84931020eba01a7619f7c5966d7f31346 Mon Sep 17 00:00:00 2001 From: Adam Chalkley Date: Wed, 22 Mar 2023 05:25:35 -0500 Subject: [PATCH] Disable structslop linter Disabling until Go 1.20 compatibility issue can be resolved. refs https://github.com/atc0005/go-ci/issues/962 --- .github/workflows/lint-using-optional-linters.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint-using-optional-linters.yml b/.github/workflows/lint-using-optional-linters.yml index 0447941..66598e7 100644 --- a/.github/workflows/lint-using-optional-linters.yml +++ b/.github/workflows/lint-using-optional-linters.yml @@ -44,10 +44,12 @@ jobs: # run: git config --global --add safe.directory "$GITHUB_WORKSPACE" run: git config --global --add safe.directory "${PWD}" - - name: Run orijtech/structslop - run: | - echo "structslop version $(go version -m $(which structslop) | awk '$1 == "mod" { print $3 }')" - structslop ./... + # DISABLED until https://github.com/atc0005/go-ci/issues/962 is resolved + # + # - name: Run orijtech/structslop + # run: | + # echo "structslop version $(go version -m $(which structslop) | awk '$1 == "mod" { print $3 }')" + # structslop ./... - name: Run orijtech/tickeryzer run: |