From 8e9977f38b9d6fa342c2fa4eaa56a46f4df455a9 Mon Sep 17 00:00:00 2001 From: disinvite Date: Tue, 12 Dec 2023 14:06:53 -0500 Subject: [PATCH] continue on error --- .github/workflows/analyze.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml index ad14714d..83141969 100644 --- a/.github/workflows/analyze.yml +++ b/.github/workflows/analyze.yml @@ -13,7 +13,11 @@ jobs: run: | pip install -r tools/requirements.txt - - name: Lint codebase + - name: Lint ISLE + continue-on-error: true run: | - python3 tools/decomplint/decomplint.py ISLE --module ISLE --warnfail || - python3 tools/decomplint/decomplint.py LEGO1 --module LEGO1 --warnfail + python3 tools/decomplint/decomplint.py ISLE --module ISLE --warnfail + + - name: Lint LEGO1 + run: | + python3 tools/decomplint/decomplint.py LEGO1 --module LEGO1 --warnfail \ No newline at end of file