Skip to content

Commit

Permalink
feat: improve build performance
Browse files Browse the repository at this point in the history
Github actions now support dependencies caching.
This should improve the overall build and test time in general

More detail here: https://github.blog/changelog/2021-11-23-github-actions-setup-python-now-supports-dependency-caching/

Authored-by: Vinit Kumar <vinit.kumar@socialschools.nl>
Signed-off-by: Vinit Kumar <vinit.kumar@socialschools.nl>
  • Loading branch information
vinitkumar committed Jan 23, 2022
1 parent 68a0a9f commit 11898d4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -38,6 +38,7 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
sudo apt install gettext gcc -y
Expand Down Expand Up @@ -89,6 +90,7 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
sudo apt install gettext gcc -y
Expand Down Expand Up @@ -129,6 +131,7 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
sudo apt install gettext gcc -y
Expand Down

0 comments on commit 11898d4

Please sign in to comment.