From f30168e890fdcf406bbd2da223e5f0165d8e78bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lucas=20de=20Sousa=20Almeida?= Date: Wed, 7 Aug 2024 16:24:59 -0300 Subject: [PATCH 1/3] Trying to fix pylint errors MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Lucas de Sousa Almeida --- .github/workflows/pylint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index ba63bdd4..d89d1beb 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -24,5 +24,5 @@ jobs: pip install pylint - name: Analysing the code with pylint run: | - pylint $(git ls-files '*.py') - pylint $(git ls-files '*.ipynb') + pylint $(git ls-files '*.py') --output=lintpy.txt || true + pylint $(git ls-files '*.ipynb') --output=lintipynb.txt || true From b711ded497a91eeb0acd1de6d9a79d9584baa617 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lucas=20de=20Sousa=20Almeida?= Date: Tue, 20 Aug 2024 09:17:09 -0300 Subject: [PATCH 2/3] Logging for pylint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Lucas de Sousa Almeida --- .github/workflows/pylint.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index d89d1beb..2d30dfd0 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -26,3 +26,7 @@ jobs: run: | pylint $(git ls-files '*.py') --output=lintpy.txt || true pylint $(git ls-files '*.ipynb') --output=lintipynb.txt || true + echo "Linting for Python files." + cat lintpy.txt + echo "Linting for Jupyter files." + cat lintipynb.txt From 199d527a7b49dfe579e597ad07fd5a36dbdd4d50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lucas=20de=20Sousa=20Almeida?= Date: Tue, 20 Aug 2024 09:49:58 -0300 Subject: [PATCH 3/3] Trying to silent code analysis MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Lucas de Sousa Almeida --- .github/workflows/{crosshair.yaml => crosshair.yaml.backup} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{crosshair.yaml => crosshair.yaml.backup} (100%) diff --git a/.github/workflows/crosshair.yaml b/.github/workflows/crosshair.yaml.backup similarity index 100% rename from .github/workflows/crosshair.yaml rename to .github/workflows/crosshair.yaml.backup