From ccb7e3dc938df711b09c8a08aa43e25ee8c635cd Mon Sep 17 00:00:00 2001 From: aalok-sathe Date: Wed, 22 Nov 2023 13:36:23 -0500 Subject: [PATCH] attempt 9/n --- .github/workflows/pylint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index fe38765..5b1664b 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -25,7 +25,9 @@ jobs: pylint -j 0 --extension-pkg-allow-list=kenlm,numpy surprisal --output-format=json:pylint.json,colorized || pylint-exit -efail $? - name: convert pylint json output to html - run: pylint-json2html pylint.json -o docs/pylint.html + run: | + mkdir -p docs/ + pylint-json2html pylint.json -o docs/pylint.html - name: upload pylint output as artifact uses: actions/upload-artifact@master