From 05983946ce0c34fc9172d0cd43589ce55dc30d50 Mon Sep 17 00:00:00 2001 From: tinger Date: Wed, 31 Jul 2024 10:11:18 +0200 Subject: [PATCH] Add retain action to tests workflow --- .github/workflows/tests.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6191fbd..db8a16c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -42,3 +42,14 @@ jobs: - name: Run test suite run: just ci + + - name: Archive artifacts + uses: actions/upload-artifact@v4 + if: always() + with: + name: artifacts + path: | + tests/**/diff/*.png + tests/**/out/*.png + tests/**/ref/*.png + retention-days: 5 -- 2.51.2