diff --git a/examples/github-actions/full-showcase.yml b/examples/github-actions/full-showcase.yml index 6765b802..18d03e5b 100644 --- a/examples/github-actions/full-showcase.yml +++ b/examples/github-actions/full-showcase.yml @@ -104,6 +104,7 @@ jobs: run: | START=$(date +%s) ./ckb init + continue-on-error: true if ! ./ckb index 2>&1 | tee /tmp/index.log; then if grep -q "Indexer not found" /tmp/index.log; then @@ -182,6 +183,7 @@ jobs: VIOLATIONS=0 for f in $(git diff --name-only origin/${{ github.base_ref }}...HEAD | grep -E '\.(go|ts|js|py)$' | head -20); do + continue-on-error: true [ -f "$f" ] || continue r=$(./ckb complexity "$f" --format=json 2>/dev/null || echo '{}') cy=$(echo "$r" | jq '.summary.maxCyclomatic // 0') @@ -229,6 +231,7 @@ jobs: if [ -f missing_coupled.json.tmp ]; then jq -s 'unique_by(.file) | {missingCoupled: .}' missing_coupled.json.tmp > coupling.json 2>/dev/null || echo '{"missingCoupled":[]}' > coupling.json rm -f missing_coupled.json.tmp + continue-on-error: true else echo '{"missingCoupled":[]}' > coupling.json fi