Skip to content

Commit

Permalink
adds saveSampleadds saveSamples
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Mar 19, 2023
1 parent 5af206e commit 3ae7c09
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3ae7c09

Please sign in to comment.