diff options
-rw-r--r-- | .github/workflows/linux.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 711fd1abcf..053d22e4f7 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -80,6 +80,10 @@ jobs: - name: Build and test run: ./ci/script.sh + - name: Cache dependencies + if: ${{ success() }} + run: ./ci/before_cache.sh + lint: runs-on: ubuntu-latest env: @@ -131,3 +135,7 @@ jobs: - name: Build and test run: ./ci/script.sh + + - name: Cache dependencies + if: ${{ success() }} + run: ./ci/before_cache.sh |