diff options
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63f9337..1d089d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,7 @@ jobs: uses: actions/setup-python@v2 with: python-version: '${{ matrix.python-version }}' + cache: pip - name: Initialize Git run: | git config --global user.name 'John Doe' @@ -48,6 +49,8 @@ jobs: uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 + with: + cache: pip - name: Install dependencies run: pip install -r requirements.txt - name: Set up ssh-agent |