From 937f45363de1f6e293ebe889e6f9dd6cbdf41b09 Mon Sep 17 00:00:00 2001 From: ChrisLiu Date: Mon, 26 Sep 2022 11:55:43 +0800 Subject: [PATCH] remove markdown checker Signed-off-by: ChrisLiu --- .github/workflows/ci.yaml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 31249a0..80e1227 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -61,20 +61,6 @@ jobs: run: find ./* -name "*" | grep -v vendor | xargs misspell -error - name: Run shellcheck run: find ./ -name "*.sh" | grep -v vendor | xargs shellcheck - - name: Lint markdown files - run: find ./ -name "*.md" | grep -v vendor | grep -v commandline | grep -v .github | grep -v swagger | grep -v api | xargs mdl -r ~MD010,~MD013,~MD014,~MD022,~MD024,~MD029,~MD031,~MD032,~MD033,~MD036 - # - name: Check markdown links - # run: | - # set +e - # for name in $(find . -name \*.md | grep -v vendor | grep -v CHANGELOG); do - # if [ -f $name ]; then - # markdown-link-check -q $name -c .github/workflows/markdown-link-check.config.json; - # if [ $? -ne 0 ]; then - # code=1 - # fi - # fi - # done - # bash -c "exit $code"; unit-tests: runs-on: ubuntu-18.04