File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -20,18 +20,21 @@ jobs:
20
20
- uses : actions/setup-python@v5
21
21
with :
22
22
python-version : ' 3.9.18'
23
+ cache : ' pip'
23
24
24
25
- name : Install Python dependencies
25
26
run : |
26
- python -m pip install -U pip
27
- python -m pip install -U setuptools wheel
28
- python -m pip install -r ambient_sound_analysis/requirements_noise.txt
27
+ pip install -r ambient_sound_analysis/requirements_noise.txt
29
28
30
29
31
- - name : Install ffmpeg
32
- run : |
33
- sudo apt-get update
34
- sudo apt-get install ffmpeg
30
+ # - name: Install ffmpeg
31
+ # run: |
32
+ # sudo apt-get update
33
+ # sudo apt-get install ffmpeg
34
+
35
+ - uses : awalsh128/cache-apt-pkgs-action@latest
36
+ with :
37
+ packages : ffmpeg
35
38
36
39
- name : Create plots
37
40
if : steps.cache.outputs.cache-hit != 'true'
You can’t perform that action at this time.
0 commit comments