We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bbb84f commit 69957a4Copy full SHA for 69957a4
.github/workflows/noise_processing.yml
@@ -20,18 +20,21 @@ jobs:
20
- uses: actions/setup-python@v5
21
with:
22
python-version: '3.9.18'
23
+ cache: 'pip'
24
25
- name: Install Python dependencies
26
run: |
- 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
+ pip install -r ambient_sound_analysis/requirements_noise.txt
29
30
31
- - name: Install ffmpeg
32
- run: |
33
- sudo apt-get update
34
- sudo apt-get install ffmpeg
+ # - name: Install ffmpeg
+ # run: |
+ # sudo apt-get update
+ # sudo apt-get install ffmpeg
+
35
+ - uses: awalsh128/cache-apt-pkgs-action@latest
36
+ with:
37
+ packages: ffmpeg
38
39
- name: Create plots
40
if: steps.cache.outputs.cache-hit != 'true'
0 commit comments