diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-08 11:08:22 +0500 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-08 11:08:22 +0500 |
commit | 5e7a07413311dac7ec56f13475273962f52df16c (patch) | |
tree | f6451086f2b75b04a71c9e15657d461f8f37015a /.github | |
parent | t/i/docker: clean up Docker data (diff) | |
download | cgitize-5e7a07413311dac7ec56f13475273962f52df16c.tar.gz cgitize-5e7a07413311dac7ec56f13475273962f52df16c.zip |
workflows/ci: cache pip packages
Diffstat (limited to '.github')
-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 |