Add caching step in workflow

This commit is contained in:
Webber 2020-01-26 01:03:25 +01:00 committed by Webber Takken
parent afddcfa5fd
commit 4c8f96d75c

View File

@ -49,6 +49,14 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: actions/cache@v1.1.0
with:
path: ${{ matrix.projectPath }}/Library
key: Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }}
restore-keys: |
Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }}
Library-${{ matrix.projectPath }}-
Library-
- uses: ./
with:
projectPath: ${{ matrix.projectPath }}