From b7e76df81383680ae01fada8db4d2c6f99391d8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Tue, 13 May 2025 21:34:10 +0200 Subject: [PATCH] feat: test that the report is generated This ensures we can download the artifact. --- .forgejo/workflows/check.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/check.yml b/.forgejo/workflows/check.yml index 70dad15..14a13b1 100644 --- a/.forgejo/workflows/check.yml +++ b/.forgejo/workflows/check.yml @@ -26,8 +26,21 @@ jobs: # Create a comment on the associated PR comment-on-pr: ${{ github.ref_name != 'main' }} # Generate artifacts on main (to speed up comparisons) - generate-artifact: ${{ github.ref_name == 'main' }} + # generate-artifact: ${{ github.ref_name == 'main' }} + # Always generate artifacts for testing purposes + generate-artifact: 'true' # Generate comparisons to main do-comparison: 'true' # This job's name (so we can find the artifacts) job-name: report-size + report-download-check: + runs-on: nixos + needs: report-size + steps: + - name: Download previous report + uses: https://git.salame.cl/actions/download-artifact@d8d0a99033603453ad2255e58720b460a0555e1e # v4 + with: + name: report.json + - name: Verify report exists + run: | + cat report.json