Skip to content

Commit fa9c5ab

Browse files
authored
build: add apt package caching to test workflow (#159)
1 parent 914e08a commit fa9c5ab

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@ jobs:
3131
python-version: ${{ matrix.py }}
3232
cache: 'pip'
3333
cache-dependency-path: 'setup.py'
34+
- name: Cache apt packages
35+
uses: actions/cache@v3
36+
with:
37+
path: |
38+
/var/cache/apt/archives
39+
/var/lib/apt/lists
40+
key: apt-${{ runner.os }}-portaudio
41+
restore-keys: |
42+
apt-${{ runner.os }}-
3443
- name: Cache tox environments
3544
uses: actions/cache@v3
3645
with:

0 commit comments

Comments
 (0)