From f89a501b04ed212000ddc20efd91026ea9eb19ab Mon Sep 17 00:00:00 2001 From: Wolfgang Fahl Date: Sun, 19 Mar 2023 08:23:38 +0100 Subject: [PATCH] tries caching sample data --- .github/workflows/build.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c7fbb48..e2aa791 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,11 +27,24 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + - name: Install python dependencies run: | python -m pip install --upgrade pip scripts/install - - name: Run tests + + - name: Cache Samples + id: cache-samples + uses: actions/cache@v3 + with: + path: ceur-ws + key: ${{ runner.os }}-ceurws + + - name: getSamples + if: steps.cache-samples.outputs.cache-hit != 'true' run: | scripts/getSamples --ceurws -p -t + + - name: Run tests + run: | scripts/test