From 3ae7c09945da0b3e37ce935d777f95fa260d8dda Mon Sep 17 00:00:00 2001 From: Wolfgang Fahl Date: Sun, 19 Mar 2023 11:34:40 +0100 Subject: [PATCH] adds saveSampleadds saveSamples --- .github/workflows/build.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e2aa791..90cb64a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,18 +33,25 @@ jobs: python -m pip install --upgrade pip scripts/install - - name: Cache Samples + - name: Cache Samples id: cache-samples uses: actions/cache@v3 with: - path: ceur-ws - key: ${{ runner.os }}-ceurws + path: ceur-ws + key: ceurws - - name: getSamples + - name: getSamples if: steps.cache-samples.outputs.cache-hit != 'true' run: | scripts/getSamples --ceurws -p -t + - name: saveSamples + id: saveSamples + uses: actions/cache/save@v3 + with: + path: ceur-ws + key: ceurws + - name: Run tests run: | scripts/test