File tree 3 files changed +10
-6
lines changed
ambient_sound_analysis/img
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 6
6
push :
7
7
branches :
8
8
- main
9
- - exporting_results
9
+ - caching
10
10
11
11
# schedule:
12
12
# - cron: '9 * * * *'
@@ -20,18 +20,22 @@ jobs:
20
20
- uses : actions/setup-python@v5
21
21
with :
22
22
python-version : ' 3.9.18'
23
+ cache : ' pip'
24
+ cache-dependency-path : ambient_sound_analysis/requirements_noise.txt
23
25
24
26
- name : Install Python dependencies
25
27
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
28
+ pip install -r ambient_sound_analysis/requirements_noise.txt
29
29
30
30
31
31
- name : Install ffmpeg
32
32
run : |
33
- sudo apt-get update
34
- sudo apt-get install ffmpeg
33
+ sudo apt-get update
34
+ sudo apt-get install ffmpeg
35
+
36
+ # - uses: awalsh128/cache-apt-pkgs-action@latest
37
+ # with:
38
+ # packages: ffmpeg
35
39
36
40
- name : Create plots
37
41
if : steps.cache.outputs.cache-hit != 'true'
You can’t perform that action at this time.
0 commit comments