From ff5791529159a37324f470ab4c45597e07dcbcb0 Mon Sep 17 00:00:00 2001 From: chrysle Date: Sat, 20 Apr 2024 08:20:44 +0200 Subject: [PATCH] Ensure table is generated after `nox` failure --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88d3dd2..cebd923 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,10 +40,10 @@ jobs: continue-on-error: true run: | python -m nox --report report.json - cat report.json - python report_to_table.py - name: Verify table has not been altered run: | + cat report.json + python report_to_table.py DIFF_FOR_TABLE=$(git diff table.md) echo "DIFF_FOR_TABLE=$DIFF_FOR_TABLE" >> $GITHUB_OUTPUT id: verify-table