Skip to content

Commit

Permalink
tries caching sample data
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Mar 19, 2023
1 parent 3687733 commit f89a501
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f89a501

Please sign in to comment.